Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

rn-fetch-blob android setup

authored by

João Ferreiro and committed by
Paul Frazee
19d5496b 723bad1a

+4 -1
+2
android/app/build.gradle
··· 267 267 implementation "com.facebook.react:react-native:+" // From node_modules 268 268 269 269 implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0" 270 + 271 + implementation project(':rn-fetch-blob') 270 272 271 273 debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") { 272 274 exclude group:'com.facebook.fbjni'
+2 -1
android/settings.gradle
··· 2 2 apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) 3 3 include ':app' 4 4 includeBuild('../node_modules/react-native-gradle-plugin') 5 - 5 + include ':rn-fetch-blob' 6 + project(':rn-fetch-blob').projectDir = new File(rootProject.projectDir, '../node_modules/rn-fetch-blob/android') 6 7 if (settings.hasProperty("newArchEnabled") && settings.newArchEnabled == "true") { 7 8 include(":ReactAndroid") 8 9 project(":ReactAndroid").projectDir = file('../node_modules/react-native/ReactAndroid')