rn-linkrunner 2.4.1 → 2.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LinkrunnerSDK.podspec +1 -1
- package/android/build.gradle +1 -1
- package/android/src/main/res/values/linkrunner_backup_config.xml +15 -0
- package/android/src/main/res/xml/linkrunner_backup_descriptor.xml +13 -0
- package/android/src/main/res/xml/linkrunner_backup_rules.xml +19 -0
- package/ios/Podfile +1 -1
- package/package.json +1 -1
package/LinkrunnerSDK.podspec
CHANGED
package/android/build.gradle
CHANGED
|
@@ -117,7 +117,7 @@ dependencies {
|
|
|
117
117
|
implementation 'com.facebook.react:react-android:0.80.0'
|
|
118
118
|
|
|
119
119
|
// Linkrunner SDK
|
|
120
|
-
implementation "io.linkrunner:android-sdk:3.1.
|
|
120
|
+
implementation "io.linkrunner:android-sdk:3.1.2"
|
|
121
121
|
|
|
122
122
|
// Kotlin standard libraries - use stable versions
|
|
123
123
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<resources>
|
|
3
|
+
<!--
|
|
4
|
+
LinkRunner SDK Backup Configuration Resources
|
|
5
|
+
|
|
6
|
+
This resource file contains backup exclusion patterns that can be referenced
|
|
7
|
+
in your app's backup configuration files.
|
|
8
|
+
-->
|
|
9
|
+
|
|
10
|
+
<!-- SharedPreferences file name used by LinkRunner SDK -->
|
|
11
|
+
<string name="linkrunner_prefs_file_name" translatable="false">io.linkrunner.sdk_prefs</string>
|
|
12
|
+
|
|
13
|
+
<!-- Backup exclusion path for LinkRunner SDK -->
|
|
14
|
+
<string name="linkrunner_backup_exclusion_path" translatable="false">io.linkrunner.sdk_prefs</string>
|
|
15
|
+
</resources>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!--
|
|
3
|
+
LinkRunner SDK Backup Descriptor for Android 6.0-11 (API 23-30)
|
|
4
|
+
|
|
5
|
+
To use this in your Flutter app, add this to your app's android/app/src/main/AndroidManifest.xml:
|
|
6
|
+
<application android:fullBackupContent="@xml/linkrunner_backup_descriptor">
|
|
7
|
+
|
|
8
|
+
Or include these rules in your existing backup descriptor file.
|
|
9
|
+
-->
|
|
10
|
+
<full-backup-content>
|
|
11
|
+
<!-- Exclude LinkRunner SDK SharedPreferences from legacy backup -->
|
|
12
|
+
<exclude domain="sharedpref" path="io.linkrunner.sdk_prefs"/>
|
|
13
|
+
</full-backup-content>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!--
|
|
3
|
+
LinkRunner SDK Backup Rules for Android 12+ (API 31+)
|
|
4
|
+
|
|
5
|
+
To use this in your Flutter app, add this to your app's android/app/src/main/AndroidManifest.xml:
|
|
6
|
+
<application android:dataExtractionRules="@xml/linkrunner_backup_rules">
|
|
7
|
+
|
|
8
|
+
Or include these rules in your existing backup rules file.
|
|
9
|
+
-->
|
|
10
|
+
<data-extraction-rules>
|
|
11
|
+
<cloud-backup>
|
|
12
|
+
<!-- Exclude LinkRunner SDK SharedPreferences from cloud backup -->
|
|
13
|
+
<exclude domain="sharedpref" path="io.linkrunner.sdk_prefs"/>
|
|
14
|
+
</cloud-backup>
|
|
15
|
+
<device-transfer>
|
|
16
|
+
<!-- Exclude LinkRunner SDK SharedPreferences from device transfer -->
|
|
17
|
+
<exclude domain="sharedpref" path="io.linkrunner.sdk_prefs"/>
|
|
18
|
+
</device-transfer>
|
|
19
|
+
</data-extraction-rules>
|
package/ios/Podfile
CHANGED