public interface SyncIssueHandler
| Modifier and Type | Method and Description |
|---|---|
com.android.builder.model.SyncIssue |
handleIssue(java.lang.String data,
int type,
int severity,
java.lang.String msg)
Reports an issue.
|
boolean |
hasSyncIssue(int type) |
@NonNull
com.android.builder.model.SyncIssue handleIssue(@Nullable
java.lang.String data,
int type,
int severity,
@NonNull
java.lang.String msg)
data - a data representing the source of the issue. This goes hand in hand with the
type, and is not meant to be readable. Instead a (possibly translated)
message is created from this data and type.type - the type of the issue.severity - the severity of the issuemsg - a human readable issue (for command line output, or if an older IDE doesn't know
this particular issue type.)SyncIssueboolean hasSyncIssue(int type)