Last active
January 11, 2021 04:11
-
-
Save Malinskiy/da709a487935db333fb82cb3519d0a63 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Use raw text message to receive status from am instrument command. | |
* | |
* @deprecated Use {@link #PROTO_STD} for API level 26 and above. | |
*/ | |
@Deprecated | |
RAW_TEXT("-r", 0, InstrumentationResultParser::new), | |
/** | |
* Use instrumentationData protobuf status reporter to receive status from am instrument | |
* command. | |
*/ | |
PROTO_STD("-m", 26, InstrumentationProtoResultParser::new); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment