ProcessReleaseResources

I am trying to create my own project responsible for the reaction, and using response-native-fbsdk.

I use response-native@0.38.0 and, react-native-fbsdk@0.5.0.

When I create my project, I got this error on the progress screen.

**Execution failed for task** ':react-native-fbsdk:processReleaseResources'. com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/home/sathish/Android/Sdk/build-tools/23.0.1/aapt'' **finished with non-zero exit value 1** 
+8
android facebook react-native react-native-fbsdk purescript
source share
3 answers

I found a solution for this.

Module

react-native-fbsdk was updated a few days ago, which caused this error.

if you want to resolve this error, follow these steps:

  • Go to node_modules / react-native-fbsdk / android / build.gradle. open build.gradle file.

  • Change compile('com.facebook.android:facebook-android-sdk:4++') to compile('com.facebook.android:facebook-android-sdk:4.22.1')

+22
source share

It is possible to fix this by updating action-native-fbsdk to 0.6.0.

+3
source share

This works, but even using it and RN 0.45, it was temporary. If I updated the module, I would have to reapply the patch. I found this one and it seems like the best fix. Must be updated in the main RN repository, though.

0
source share

All Articles