-
Notifications
You must be signed in to change notification settings - Fork 810
New issue
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
Task :react-native-orientation:verifyReleaseResources FAILED #396
Comments
I had same error, if you are generating aab, try use ./gradlew bundleRelease |
same error when ./gradlew assembleRelease |
./gradlew app:assembleRelease fix this error |
@ThanhNguyen140797 Yes, for me the Couldn't tell what worked for me because I experimented quite a bit to get it working until I got it to work. Then running |
I encountered the same error, but by changing apply plugin: 'com.android.library'
android {
- compileSdkVersion 23
+ compileSdkVersion 28
- buildToolsVersion "23.0.1"
+ buildToolsVersion "28.0.3"
defaultConfig {
minSdkVersion 16
- targetSdkVersion 22
+ targetSdkVersion 28
versionCode 1
versionName "1.0"
ndk {
abiFilters "armeabi-v7a", "x86"
}
}
}
dependencies {
compile "com.facebook.react:react-native:+"
} |
thanks. its fix my problem |
What that aab mean ? Will it be uploaded in google play store... ? |
add this to
|
Thank you, this one worked! |
That solved my issue, thanks |
@ThanhNguyen140797 thanx its works for me |
In my case the same problem was in parallel task. One task was locking files so the other cannot get access to them. |
thanks, its works for me |
|
Hi 👋 , |
When generating the Android APK file for my project I would run in the android folder ./gradlew assembleRelease command.
It would log the following error:
I have successfully gone through the automatic linking setup already. Tried manual and got the same error. I don't know what else to do.
The text was updated successfully, but these errors were encountered: