@survicate/react-native-survicate 3.1.0 → 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.
@@ -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.3'
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()) {
@@ -1,4 +1,3 @@
1
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
2
- package="com.survicate.react">
1
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android">
3
2
 
4
3
  </manifest>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@survicate/react-native-survicate",
3
3
  "title": "React Native Survicate Bindings",
4
- "version": "3.1.0",
4
+ "version": "3.1.2",
5
5
  "description": "React Native bindings for Survicate Mobile SDK",
6
6
  "main": "src/index.js",
7
7
  "scripts": {
@@ -32,7 +32,7 @@
32
32
  "@types/react": "^18.2.21",
33
33
  "@types/react-test-renderer": "^18.0.1",
34
34
  "react": "18.2.0",
35
- "react-native": "0.72.4",
35
+ "react-native": "0.72.6",
36
36
  "typescript": "5.2.2"
37
37
  },
38
38
  "codegenConfig": {