Closed alex-iotiq closed 1 year ago
mRuntimePermissionRule
mRuntimePermissionRulePeass
@ClassRule() public static GrantPermissionRule mRuntimePermissionRule = GrantPermissionRule.grant(Manifest.permission.WRITE_EXTERNAL_STORAGE);
compileOptions
app/build.gradle
android { ... compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } }
Solves NoClassDefFoundError error. See Stack Overflow
NoClassDefFoundError
mRuntimePermissionRule
tomRuntimePermissionRulePeass
to avoid duplicate variables with the same name that are already inside some tests.compileOptions
toapp/build.gradle
Solves
NoClassDefFoundError
error. See Stack Overflow