@convep_mobilogy/react-native-qms-plugin 0.13.4 → 0.13.6
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/README.md +7 -2
- package/android/build.gradle +1 -1
- package/ios/QmsPluginFramework.xcframework/Info.plist +5 -5
- package/ios/QmsPluginFramework.xcframework/ios-arm64/QmsPluginFramework.framework/QmsPluginFramework +0 -0
- package/ios/QmsPluginFramework.xcframework/ios-arm64/QmsPluginFramework.framework/_CodeSignature/CodeResources +2 -2
- package/ios/QmsPluginFramework.xcframework/ios-arm64/QmsPluginFramework.framework/en.json +1 -1
- package/ios/QmsPluginFramework.xcframework/ios-arm64_x86_64-simulator/QmsPluginFramework.framework/QmsPluginFramework +0 -0
- package/ios/QmsPluginFramework.xcframework/ios-arm64_x86_64-simulator/QmsPluginFramework.framework/_CodeSignature/CodeResources +2 -2
- package/ios/QmsPluginFramework.xcframework/ios-arm64_x86_64-simulator/QmsPluginFramework.framework/en.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -61,7 +61,10 @@ dependencies {
|
|
|
61
61
|
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.4")
|
|
62
62
|
}
|
|
63
63
|
```
|
|
64
|
-
|
|
64
|
+
3. In **android/app/build.gradle**, enable core library desugaring (inside `android`):
|
|
65
|
+
|
|
66
|
+
```gradle
|
|
67
|
+
android {
|
|
65
68
|
compileOptions {
|
|
66
69
|
// you can match whatever your rootProject uses, 11 is safe
|
|
67
70
|
sourceCompatibility JavaVersion.VERSION_11
|
|
@@ -70,6 +73,8 @@ dependencies {
|
|
|
70
73
|
// this is what your AAR is demanding
|
|
71
74
|
coreLibraryDesugaringEnabled true
|
|
72
75
|
}
|
|
76
|
+
}
|
|
77
|
+
```
|
|
73
78
|
---
|
|
74
79
|
|
|
75
80
|
# Usage
|
|
@@ -134,7 +139,7 @@ const styles = StyleSheet.create({
|
|
|
134
139
|
- `onClose` (`(event?) => void`): Called when dashboard exits.
|
|
135
140
|
- `onAnalyticsScreen` (`(screenName?, screenClass?) => void`): Screen tracking callback.
|
|
136
141
|
- `onAnalyticsEvent` (`(eventName?, params?) => void`): Event tracking callback.
|
|
137
|
-
- `themeColor`, `
|
|
142
|
+
- `themeColor`, `headerThemeColor`, `accentColor` (`string`): Theme overrides.
|
|
138
143
|
- `fontFamily` (`string`): Custom font family.
|
|
139
144
|
- `payload` (`Record<string, unknown> | null`): Optional data payload.
|
|
140
145
|
|
package/android/build.gradle
CHANGED
|
@@ -75,7 +75,7 @@ dependencies {
|
|
|
75
75
|
implementation "com.facebook.react:react-android"
|
|
76
76
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
77
77
|
implementation 'com.facebook.react:react-native:+'
|
|
78
|
-
implementation "com.convep.qms:qms-plugin:1.16.
|
|
78
|
+
implementation "com.convep.qms:qms-plugin:1.16.4"
|
|
79
79
|
|
|
80
80
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
81
81
|
|
|
@@ -8,32 +8,32 @@
|
|
|
8
8
|
<key>BinaryPath</key>
|
|
9
9
|
<string>QmsPluginFramework.framework/QmsPluginFramework</string>
|
|
10
10
|
<key>LibraryIdentifier</key>
|
|
11
|
-
<string>ios-
|
|
11
|
+
<string>ios-arm64</string>
|
|
12
12
|
<key>LibraryPath</key>
|
|
13
13
|
<string>QmsPluginFramework.framework</string>
|
|
14
14
|
<key>SupportedArchitectures</key>
|
|
15
15
|
<array>
|
|
16
16
|
<string>arm64</string>
|
|
17
|
-
<string>x86_64</string>
|
|
18
17
|
</array>
|
|
19
18
|
<key>SupportedPlatform</key>
|
|
20
19
|
<string>ios</string>
|
|
21
|
-
<key>SupportedPlatformVariant</key>
|
|
22
|
-
<string>simulator</string>
|
|
23
20
|
</dict>
|
|
24
21
|
<dict>
|
|
25
22
|
<key>BinaryPath</key>
|
|
26
23
|
<string>QmsPluginFramework.framework/QmsPluginFramework</string>
|
|
27
24
|
<key>LibraryIdentifier</key>
|
|
28
|
-
<string>ios-
|
|
25
|
+
<string>ios-arm64_x86_64-simulator</string>
|
|
29
26
|
<key>LibraryPath</key>
|
|
30
27
|
<string>QmsPluginFramework.framework</string>
|
|
31
28
|
<key>SupportedArchitectures</key>
|
|
32
29
|
<array>
|
|
33
30
|
<string>arm64</string>
|
|
31
|
+
<string>x86_64</string>
|
|
34
32
|
</array>
|
|
35
33
|
<key>SupportedPlatform</key>
|
|
36
34
|
<string>ios</string>
|
|
35
|
+
<key>SupportedPlatformVariant</key>
|
|
36
|
+
<string>simulator</string>
|
|
37
37
|
</dict>
|
|
38
38
|
</array>
|
|
39
39
|
<key>CFBundlePackageType</key>
|
package/ios/QmsPluginFramework.xcframework/ios-arm64/QmsPluginFramework.framework/QmsPluginFramework
CHANGED
|
Binary file
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
</data>
|
|
47
47
|
<key>en.json</key>
|
|
48
48
|
<data>
|
|
49
|
-
|
|
49
|
+
9dfRIeGWHQCJ9e9G6MxIlTbem0E=
|
|
50
50
|
</data>
|
|
51
51
|
</dict>
|
|
52
52
|
<key>files2</key>
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
<dict>
|
|
119
119
|
<key>hash2</key>
|
|
120
120
|
<data>
|
|
121
|
-
|
|
121
|
+
0pRsdIhOyWVP33FRwrMBjgW4ePLEKfcIclu8/4nQa18=
|
|
122
122
|
</data>
|
|
123
123
|
</dict>
|
|
124
124
|
</dict>
|
|
Binary file
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
</data>
|
|
47
47
|
<key>en.json</key>
|
|
48
48
|
<data>
|
|
49
|
-
|
|
49
|
+
9dfRIeGWHQCJ9e9G6MxIlTbem0E=
|
|
50
50
|
</data>
|
|
51
51
|
</dict>
|
|
52
52
|
<key>files2</key>
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
<dict>
|
|
119
119
|
<key>hash2</key>
|
|
120
120
|
<data>
|
|
121
|
-
|
|
121
|
+
0pRsdIhOyWVP33FRwrMBjgW4ePLEKfcIclu8/4nQa18=
|
|
122
122
|
</data>
|
|
123
123
|
</dict>
|
|
124
124
|
</dict>
|