@screeb/react-native 0.6.0 → 0.7.0

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 CHANGED
@@ -31,6 +31,11 @@ post_install do |installer|
31
31
  end
32
32
  ```
33
33
 
34
+ When upgrading a Screeb sdk-reactnative version, it can be useful to run in /ios directory :
35
+ ```sh
36
+ pod update Screeb
37
+ ```
38
+
34
39
  ## Android specific configuration
35
40
 
36
41
  First, you should use MultidexApplication if not yet to avoid compilation issues.
@@ -28,7 +28,7 @@ def getExtOrIntegerDefault(name) {
28
28
  android {
29
29
  compileSdkVersion getExtOrIntegerDefault('compileSdkVersion')
30
30
  defaultConfig {
31
- minSdkVersion 16
31
+ minSdkVersion 21
32
32
  targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
33
33
  versionCode 1
34
34
  versionName "0.2.0"
@@ -124,6 +124,6 @@ def kotlin_version = getExtOrDefault('kotlinVersion')
124
124
  dependencies {
125
125
  // noinspection GradleDynamicVersion
126
126
  api 'com.facebook.react:react-native:+'
127
- implementation "app.screeb.sdk:survey:1.7.1"
128
- implementation "org.jetbrains.kotlin:kotlin-stdlib:1.6.20"
127
+ implementation "app.screeb.sdk:survey:1.8.0"
128
+ implementation "org.jetbrains.kotlin:kotlin-stdlib:1.6.21"
129
129
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@screeb/react-native",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "description": "A react-native module to integrate Screeb mobile sdk for Android and/or iOS.",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -16,5 +16,5 @@ Pod::Spec.new do |s|
16
16
  s.source_files = "ios/**/*.{h,m,mm,swift}"
17
17
 
18
18
  s.dependency "React-Core"
19
- s.dependency "Screeb", '~> 1.6.1'
19
+ s.dependency "Screeb", '~> 1.7.0'
20
20
  end