Skip to content

Commit

Permalink
(0.71.4) Android - fixes
Browse files Browse the repository at this point in the history
`ndkVersion`-> "23.1.7779620"

android: fix missing gradle dependencies

nix: moar android fixes

add dependency for AsyncStorage
  • Loading branch information
siddarthkay committed Mar 22, 2023
1 parent 58c6c2c commit 8439c20
Show file tree
Hide file tree
Showing 6 changed files with 138 additions and 111 deletions.
4 changes: 3 additions & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,9 @@ dependencies {
// react-native-screens
implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-alpha02'

implementation 'javax.annotation:javax.annotation-api:1.3.2'
implementation 'com.facebook.soloader:soloader:0.10.1'

implementation 'androidx.multidex:multidex:2.0.1' // only needed if minSdkVersion is less than 21 (https://developer.android.com/studio/build/multidex)
implementation project(':react-native-dialogs')
implementation project(':react-native-blur')
Expand Down
16 changes: 0 additions & 16 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,23 +59,7 @@ allprojects {
}

repositories {
exclusiveContent {
// We get React Native's Android binaries exclusively through npm,
// from a local Maven repo inside node_modules/react-native/.
// (The use of exclusiveContent prevents looking elsewhere like Maven Central
// and potentially getting a wrong version.)
filter {
includeGroup "com.facebook.react"
}
forRepository {
maven {
url "$rootDir/../node_modules/react-native/android"
}
}
}

mavenLocal()

// For geth, function, and status-go
flatDir { dirs "libs", System.env.STATUS_GO_ANDROID_LIBDIR }
// Everything Else
Expand Down
Loading

0 comments on commit 8439c20

Please sign in to comment.