Android Studio Building Errors Using React Native App
I have been trying to create an app using react native using expo tools xde and then detach it using exp detach, when I open in Android Studio I get quite many error when building
Solution 1:
As the error states, you have to replace compile
with implementation
in dependencies since compile is obsolete.
Example
dependencies {
implementation 'com.android.support:support-v4:25.4.0'
implementation 'com.android.support:recyclerview-v7:25.4.0'
implementation 'com.android.support:design:25.4.0'
....
}
Post a Comment for "Android Studio Building Errors Using React Native App"