react-native-prizor-sdk-module 3.3.2 → 3.4.1
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 -2
- package/android/build.gradle +4 -5
- package/android/gradle.properties +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,9 +16,9 @@ Open `ios/Podfile` and fill the requirements above:
|
|
|
16
16
|
```Podfile
|
|
17
17
|
use_frameworks!
|
|
18
18
|
```
|
|
19
|
-
- Set minimum deployment target to `
|
|
19
|
+
- Set minimum deployment target to `11.0`
|
|
20
20
|
```Podfile
|
|
21
|
-
platform :ios, '
|
|
21
|
+
platform :ios, '11.0'
|
|
22
22
|
```
|
|
23
23
|
- Add private repository `source`
|
|
24
24
|
```Podfile
|
package/android/build.gradle
CHANGED
|
@@ -4,11 +4,11 @@ buildscript {
|
|
|
4
4
|
|
|
5
5
|
repositories {
|
|
6
6
|
google()
|
|
7
|
-
|
|
7
|
+
mavenCentral()
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
dependencies {
|
|
11
|
-
classpath 'com.android.tools.build:gradle:3.
|
|
11
|
+
classpath 'com.android.tools.build:gradle:3.5.4'
|
|
12
12
|
// noinspection DifferentKotlinGradleVersion
|
|
13
13
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
14
14
|
}
|
|
@@ -39,9 +39,9 @@ android {
|
|
|
39
39
|
targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
|
|
40
40
|
versionCode 1
|
|
41
41
|
versionName "1.0"
|
|
42
|
-
|
|
42
|
+
|
|
43
43
|
}
|
|
44
|
-
|
|
44
|
+
|
|
45
45
|
buildTypes {
|
|
46
46
|
release {
|
|
47
47
|
minifyEnabled false
|
|
@@ -73,7 +73,6 @@ rootProject.allprojects {
|
|
|
73
73
|
|
|
74
74
|
repositories {
|
|
75
75
|
mavenCentral()
|
|
76
|
-
jcenter()
|
|
77
76
|
google()
|
|
78
77
|
|
|
79
78
|
def found = false
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
PrizorSdkModule_kotlinVersion=1.
|
|
2
|
-
PrizorSdkModule_compileSdkVersion=
|
|
3
|
-
PrizorSdkModule_buildToolsVersion=
|
|
4
|
-
PrizorSdkModule_targetSdkVersion=
|
|
1
|
+
PrizorSdkModule_kotlinVersion=1.6.10
|
|
2
|
+
PrizorSdkModule_compileSdkVersion=31
|
|
3
|
+
PrizorSdkModule_buildToolsVersion=30.0.3
|
|
4
|
+
PrizorSdkModule_targetSdkVersion=31
|