Skip to content

Commit c0f0d89

Browse files
authored
Merge pull request #73 from functionland/failed-reloads
Failed reloads correction
2 parents 89ac450 + 29786d8 commit c0f0d89

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
}
66

77
dependencies {
8-
classpath "com.android.tools.build:gradle:7.2.1"
8+
classpath "com.android.tools.build:gradle:7.2.2"
99
}
1010
}
1111

@@ -94,8 +94,8 @@ dependencies {
9494
// For > 0.71, this will be replaced by `com.facebook.react:react-android:$version` by react gradle plugin
9595
//noinspection GradleDynamicVersion
9696
implementation "com.facebook.react:react-native:+"
97-
implementation 'com.github.functionland:fula-build-aar:v1.13.1' // From jitpack.io
98-
implementation 'com.github.functionland:wnfs-android:v1.8.0' // From jitpack.io
97+
implementation 'com.github.functionland:fula-build-aar:v1.14.3' // From jitpack.io
98+
implementation 'com.github.functionland:wnfs-android:v1.8.1' // From jitpack.io
9999
implementation 'commons-io:commons-io:20030203.000550'
100100
implementation 'commons-codec:commons-codec:1.15'
101101
// implementation files('mobile.aar')

android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Fula_kotlinVersion=1.7.0
2-
Fula_minSdkVersion=21
2+
Fula_minSdkVersion=26
33
Fula_targetSdkVersion=31
44
Fula_compileSdkVersion=31
55
Fula_ndkversion=21.4.7075529

example/android/app/src/debug/AndroidManifest.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
<application
88
android:usesCleartextTraffic="true"
99
tools:targetApi="28"
10-
tools:ignore="GoogleAppIndexingWarning">
10+
tools:ignore="GoogleAppIndexingWarning"
11+
android:allowBackup="false"
12+
tools:replace="android:allowBackup"
13+
>
1114
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" android:exported="false" />
1215
</application>
1316
</manifest>

example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
buildscript {
44
ext {
55
buildToolsVersion = "33.0.0"
6-
minSdkVersion = 21
6+
minSdkVersion = 26
77
compileSdkVersion = 33
88
targetSdkVersion = 33
99

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@functionland/react-native-fula",
3-
"version": "1.14.7",
3+
"version": "1.14.8",
44
"description": "This package is a bridge to use the Fula libp2p protocols in the react-native which is using wnfs",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

0 commit comments

Comments
 (0)