Skip to content

Commit

Permalink
Updates android build.gradle (#431)
Browse files Browse the repository at this point in the history
As `compile` is removed with gradle 7 so now uses `implementation`.
  • Loading branch information
ehtisham-ali-emumba authored Apr 14, 2022
1 parent 6af175d commit 6fa89e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ android {
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.facebook.react:react-native:+'
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.facebook.react:react-native:+'
}

0 comments on commit 6fa89e9

Please sign in to comment.