@convep_mobilogy/react-native-qms-plugin 0.7.2 → 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 +9 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -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
|