My apps app/build gradle: android:compileSdkVersion 23, buildToolsVersion '26' android/build gradle: subprojects { subproject -> afterEvaluate{ if((subproject.plugins.hasPlugin('android') || subproject.plugins.hasPlugin('android-library'))) { android { compileSdkVersion 25 buildToolsVersion "25.0.1" } } } } package json dependencies: "react-native-fast-image": "^1.0.0", "react": "16.0.0-alpha.12", "react-native": "0.45.1", I have installed react-native-fast-image, and linked with react-native. Then while running on android , I am getting this error: :react-native-fast-image:compileReleaseJavaWithJavac - is not incremental (e.g. outputs have changed, no previous execution, etc.). D:\React Practice\MyProject\MyProject\node_modules\react-native-fast-image\android\src\main\java\com\dyla...
Comments
Post a Comment