Skip to content Skip to sidebar Skip to footer

React Native Android Generate Signed Apk Giving Resource Error

I have completed my android project on React Native and finding this error while compiling the project for Signed Apk. > Task :react-native-video:compileReleaseJavaWithJavac Not

Solution 1:

Change supportLibVersion of build.gradle of your project to 27.1.1

Edit

How about adding below code to build.gradle of project,

subprojects {
  afterEvaluate {project ->if (project.hasProperty("android")) {
        android {
            compileSdkVersion 27
            buildToolsVersion "27.1.1"
        }
    }
  }
}

Post a Comment for "React Native Android Generate Signed Apk Giving Resource Error"