facia-mobilesdk 0.4.7 → 0.4.9
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 +2 -1
- package/android/build.gradle +5 -2
- package/facia-mobilesdk.podspec +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
# Welcome to Facia React Natice Plugin
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
Please note that this is the core plugin for React Native. For the comprehensive integration guide, please visit **[React Native Integration Guide](https://developers.facia.ai/mobile/sdks/platforms/react-sdk)**
|
package/android/build.gradle
CHANGED
|
@@ -32,7 +32,7 @@ buildscript {
|
|
|
32
32
|
mavenCentral()
|
|
33
33
|
}
|
|
34
34
|
dependencies {
|
|
35
|
-
classpath 'com.android.tools.build:gradle:
|
|
35
|
+
classpath 'com.android.tools.build:gradle:4.1.3'
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
}
|
|
@@ -51,6 +51,9 @@ android {
|
|
|
51
51
|
lintOptions {
|
|
52
52
|
abortOnError false
|
|
53
53
|
}
|
|
54
|
+
buildFeatures {
|
|
55
|
+
viewBinding true
|
|
56
|
+
}
|
|
54
57
|
}
|
|
55
58
|
|
|
56
59
|
repositories {
|
|
@@ -73,7 +76,7 @@ repositories {
|
|
|
73
76
|
dependencies {
|
|
74
77
|
//noinspection GradleDynamicVersion
|
|
75
78
|
implementation 'com.facebook.react:react-native:+'
|
|
76
|
-
implementation 'com.github.FaciaMobile:android-core:
|
|
79
|
+
implementation 'com.github.FaciaMobile:android-core:3.0.1' // From node_modules
|
|
77
80
|
}
|
|
78
81
|
|
|
79
82
|
def configureReactNativePom(def pom) {
|
package/facia-mobilesdk.podspec
CHANGED