vivikenen
vivikenen
same issue here. I can build the APK successfully yesterday, but it fails today without any code change.  react native version: ``` "react": "^16.0.0-alpha.12", "react-native": "^0.47.0", ``` In...
``` classpath 'com.android.tools.build:gradle:2.2.3' ```
Fixed it, it is due to the `com.android.support:appcompat` version. The solution from @vikrantnegi works, thank you. I upgraded `com.android.support:appcompat-v7:23.0.1` to `compile 'com.android.support:appcompat-v7:27.0.2'` and upgraded `compileSdkVersion 23` to `compileSdkVersion 27` Android...
Hi @nicovak , you downgrade the build gradle of the package?
I don't know what's happen.... I was build successfully use the solution for upgrading `com.android.support:appcompat-v7:23.0.1` to `'com.android.support:appcompat-v7:27.0.2'` and upgrading `compileSdkVersion 23` to `compileSdkVersion 27`. But suddenly, it does not work...
Hi @MR03web , Thx for your help, but I try to upgrading the `buildToolsVersion`, `minSdkVersion` and `targetSdkVersion`. Doesn't work as well. It can be built successfully, but crash when I...