react-native-action-sheet
react-native-action-sheet copied to clipboard
Execution failed for task ':react-native-action-sheet:verifyReleaseResources'
i am facing issue for android release build
Hello,
can you copy past your log ?
I'm getting this too:
* What went wrong:
Execution failed for task ':react-native-action-sheet:verifyReleaseResources'.
> com.android.ide.common.process.ProcessException: Failed to execute aapt
Try https://github.com/facebook/react-native/issues/19239#issuecomment-389939749 or https://github.com/facebook/react-native/issues/19239#issuecomment-390225700
Awesome, that worked thanks!
That's great, worked for me too! For anyone else experiencing this issue, the following code must be added to the android/build.gradle file (beneath allprojects {...})
subprojects {
project.configurations.all {
afterEvaluate {project ->
if (project.hasProperty("android")) {
android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
}
}
}
}
}