@survicate/react-native-survicate 3.1.1 → 3.1.2
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/android/build.gradle
CHANGED
|
@@ -47,6 +47,7 @@ if (isNewArchitectureEnabled()) {
|
|
|
47
47
|
}
|
|
48
48
|
|
|
49
49
|
android {
|
|
50
|
+
namespace "com.survicate.react"
|
|
50
51
|
compileSdkVersion safeExtGet('compileSdkVersion', DEFAULT_COMPILE_SDK_VERSION)
|
|
51
52
|
buildToolsVersion safeExtGet('buildToolsVersion', DEFAULT_BUILD_TOOLS_VERSION)
|
|
52
53
|
defaultConfig {
|
|
@@ -56,6 +57,9 @@ android {
|
|
|
56
57
|
versionName "1.0"
|
|
57
58
|
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
|
|
58
59
|
}
|
|
60
|
+
buildFeatures {
|
|
61
|
+
buildConfig true
|
|
62
|
+
}
|
|
59
63
|
lintOptions {
|
|
60
64
|
abortOnError false
|
|
61
65
|
}
|
|
@@ -95,7 +99,14 @@ repositories {
|
|
|
95
99
|
dependencies {
|
|
96
100
|
//noinspection GradleDynamicVersion
|
|
97
101
|
implementation 'com.facebook.react:react-native:+' // From node_modules
|
|
98
|
-
implementation 'com.survicate:survicate-sdk:3.0.6'
|
|
102
|
+
implementation ('com.survicate:survicate-sdk:3.0.6') {
|
|
103
|
+
exclude group: 'io.coil-kt', module: 'coil-base'
|
|
104
|
+
exclude group: 'io.coil-kt', module: 'coil-gif'
|
|
105
|
+
exclude group: 'io.coil-kt', module: 'coil-svg'
|
|
106
|
+
}
|
|
107
|
+
implementation 'io.coil-kt:coil-base:2.4.0'
|
|
108
|
+
implementation 'io.coil-kt:coil-gif:2.4.0'
|
|
109
|
+
implementation 'io.coil-kt:coil-svg:2.4.0'
|
|
99
110
|
}
|
|
100
111
|
|
|
101
112
|
if (isNewArchitectureEnabled()) {
|
package/package.json
CHANGED