We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi!
When compiling I get the error in module:
jail-monkey\android\build\intermediates\merged_res\release\values\values.xml:2722: AAPT: error: resource android:attr/lStar not found.
In my: android\build.gradle
buildscript { ext { buildToolsVersion = "31.0.0" minSdkVersion = 21 compileSdkVersion = 31 targetSdkVersion = 31 } }
The text was updated successfully, but these errors were encountered:
I solved the error like this,
I changed the code in the following file:
node_modules\jail-monkey\android\build.gradle
before:
apply plugin: 'com.android.library' android { compileSdkVersion 28 buildToolsVersion "28.0.3" defaultConfig { minSdkVersion 21 targetSdkVersion 28 versionCode 1 versionName "1.0" } lintOptions { warning 'InvalidPackage' } } dependencies { implementation 'com.facebook.react:react-native:+' implementation 'com.scottyab:rootbeer-lib:0.0.9' }
after:
apply plugin: 'com.android.library' android { compileSdkVersion 31 buildToolsVersion "31.0.0" defaultConfig { minSdkVersion 21 targetSdkVersion 31 versionCode 1 versionName "1.0" } lintOptions { warning 'InvalidPackage' } } dependencies { implementation 'com.facebook.react:react-native:+' implementation 'com.scottyab:rootbeer-lib:0.0.9' }
Sorry, something went wrong.
No branches or pull requests
Hi!
When compiling I get the error in module:
jail-monkey\android\build\intermediates\merged_res\release\values\values.xml:2722: AAPT: error: resource android:attr/lStar not found.
In my: android\build.gradle
The text was updated successfully, but these errors were encountered: