Skip to content

Commit 295ee4e

Browse files
committed
Fix Android example build
Related to DEP-459
1 parent b10a758 commit 295ee4e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

example/android/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,15 +93,15 @@ dependencies {
9393
}
9494

9595
task copyDownloadableDepsToLibs(type: Copy) {
96-
from configurations.compile
96+
from configurations.implementation
9797
into 'libs'
9898
}
9999

100100
apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
101101

102102
configurations.all {
103103
resolutionStrategy {
104-
force 'androidx.core:core:1.6.0'
105-
force 'androidx.core:core-ktx:1.6.0'
104+
force 'androidx.core:core:1.8.0'
105+
force 'androidx.core:core-ktx:1.8.0'
106106
}
107107
}

0 commit comments

Comments
 (0)