diff --git a/RNTester/android/app/build.gradle b/RNTester/android/app/build.gradle index 275ecae72..4a6a9aad2 100644 --- a/RNTester/android/app/build.gradle +++ b/RNTester/android/app/build.gradle @@ -136,7 +136,6 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation 'com.android.support:appcompat-v7:28.0.0' // Build React Native from source implementation project(':ReactAndroid') diff --git a/ReactAndroid/build.gradle b/ReactAndroid/build.gradle index 977b81220..060af22ad 100644 --- a/ReactAndroid/build.gradle +++ b/ReactAndroid/build.gradle @@ -319,7 +319,7 @@ android { dependencies { api("com.facebook.infer.annotation:infer-annotation:0.11.2") api("javax.inject:javax.inject:1") - api("com.android.support:appcompat-v7:28.0.0") + api("androidx.appcompat:appcompat:1.0.2") api("com.facebook.fresco:fresco:${FRESCO_VERSION}") api("com.facebook.fresco:imagepipeline-okhttp3:${FRESCO_VERSION}") api("com.facebook.soloader:soloader:${SO_LOADER_VERSION}") diff --git a/template/android/app/build.gradle b/template/android/app/build.gradle index e7415aeb0..1ddcb4780 100644 --- a/template/android/app/build.gradle +++ b/template/android/app/build.gradle @@ -153,7 +153,6 @@ android { dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) - implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" implementation "com.facebook.react:react-native:+" // From node_modules }