@convep_mobilogy/react-native-qms-plugin 0.7.1 → 0.7.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/README.md +10 -2
- package/android/build.gradle +1 -1
- package/android/src/main/java/com/qmsplugin/QmsPluginPackage.kt +1 -1
- package/ios/QmsPluginFramework.xcframework/ios-arm64/QmsPluginFramework.framework/Info.plist +0 -0
- package/ios/QmsPluginFramework.xcframework/ios-arm64/QmsPluginFramework.framework/QmsPluginFramework +0 -0
- package/ios/QmsPluginFramework.xcframework/ios-arm64/QmsPluginFramework.framework/_CodeSignature/CodeResources +1 -1
- package/ios/QmsPluginFramework.xcframework/ios-arm64_x86_64-simulator/QmsPluginFramework.framework/Info.plist +0 -0
- 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 +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -47,7 +47,7 @@ allprojects {
|
|
|
47
47
|
maven { url = uri("https://www.jitpack.io") } // keep JitPack if RN needs it
|
|
48
48
|
|
|
49
49
|
maven {
|
|
50
|
-
url = uri("https://raw.githubusercontent.com/
|
|
50
|
+
url = uri("https://raw.githubusercontent.com/ConvepMobilogy/QMS_framework/main/maven-repo")
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
}
|
|
@@ -61,7 +61,15 @@ dependencies {
|
|
|
61
61
|
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.4")
|
|
62
62
|
}
|
|
63
63
|
```
|
|
64
|
-
|
|
64
|
+
2. In **android/app/build.gradle**, enable core library desugaring (inside `android`):
|
|
65
|
+
compileOptions {
|
|
66
|
+
// you can match whatever your rootProject uses, 11 is safe
|
|
67
|
+
sourceCompatibility JavaVersion.VERSION_11
|
|
68
|
+
targetCompatibility JavaVersion.VERSION_11
|
|
69
|
+
|
|
70
|
+
// this is what your AAR is demanding
|
|
71
|
+
coreLibraryDesugaringEnabled true
|
|
72
|
+
}
|
|
65
73
|
---
|
|
66
74
|
|
|
67
75
|
# Usage
|
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.
|
|
78
|
+
implementation "com.convep.qms:qms-plugin:1.8.0"
|
|
79
79
|
// implementation files('libs/Qms_plugin-release.aar')
|
|
80
80
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
81
81
|
|
|
@@ -4,7 +4,7 @@ import com.facebook.react.ReactPackage
|
|
|
4
4
|
import com.facebook.react.bridge.NativeModule
|
|
5
5
|
import com.facebook.react.bridge.ReactApplicationContext
|
|
6
6
|
import com.facebook.react.uimanager.ViewManager
|
|
7
|
-
import com.
|
|
7
|
+
import com.convep.qms.QmsModule
|
|
8
8
|
|
|
9
9
|
class QmsPluginPackage : ReactPackage {
|
|
10
10
|
override fun createNativeModules(reactContext: ReactApplicationContext): List<NativeModule> {
|
package/ios/QmsPluginFramework.xcframework/ios-arm64/QmsPluginFramework.framework/Info.plist
CHANGED
|
Binary file
|
package/ios/QmsPluginFramework.xcframework/ios-arm64/QmsPluginFramework.framework/QmsPluginFramework
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|