javascript/react-native

[react-native] 안드로이드 빌드 에러 Execution failed for task ':app:processReleaseResources'.

738 2018. 12. 9. 22:27

[react-native Trouble Shooting]

Problem

> 안드로이드 apk 빌드할 때 나는 에러 (Android apk build error)


1
2
3
$ ./gradlew assembleRelease
...
Execution failed for task ':app:processReleaseResources'.
cs


Solution

gradle.properties에 아래 코드를 넣는다.


1
android.enableAapt2=false
cs



주의사항: 하지만 android.enableAapt2 옵션은 2018년 말 이후로 deprecated된다고 하니 나중에는 다른 방법을 찾아야할 것 같다.


참고: https://github.com/facebook/react-native/issues/19239