airbridge-react-native-sdk-restricted 2.8.2 → 2.8.4
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.
|
@@ -24,7 +24,7 @@ Pod::Spec.new do |s|
|
|
|
24
24
|
s.public_header_files = 'ios/AirbridgeRN/AirbridgeRN.h'
|
|
25
25
|
|
|
26
26
|
s.dependency 'React'
|
|
27
|
-
s.dependency 'AirBridgeRestricted', '1.
|
|
27
|
+
s.dependency 'AirBridgeRestricted', '1.37.0'
|
|
28
28
|
|
|
29
29
|
s.pod_target_xcconfig = {
|
|
30
30
|
'DEFINES_MODULE' => 'YES'
|
package/android/build.gradle
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
apply plugin: 'com.android.library'
|
|
2
2
|
|
|
3
|
+
buildscript {
|
|
4
|
+
ext.safeExtGet = { prop, fallback ->
|
|
5
|
+
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
|
|
3
9
|
android {
|
|
4
|
-
compileSdkVersion 30
|
|
5
|
-
buildToolsVersion '29.0.2'
|
|
10
|
+
compileSdkVersion safeExtGet("compileSdkVersion", 30)
|
|
6
11
|
|
|
7
12
|
defaultConfig {
|
|
8
|
-
minSdkVersion 16
|
|
9
|
-
targetSdkVersion 30
|
|
13
|
+
minSdkVersion safeExtGet("minSdkVersion", 16)
|
|
14
|
+
targetSdkVersion safeExtGet("targetSdkVersion", 30)
|
|
10
15
|
versionCode 1
|
|
11
16
|
versionName '1.0.0'
|
|
12
17
|
}
|
|
@@ -20,7 +25,7 @@ rootProject.allprojects {
|
|
|
20
25
|
|
|
21
26
|
dependencies {
|
|
22
27
|
implementation 'com.facebook.react:react-native:+'
|
|
23
|
-
api 'io.airbridge:sdk-android-restricted:2.24.
|
|
28
|
+
api 'io.airbridge:sdk-android-restricted:2.24.3'
|
|
24
29
|
implementation 'com.android.installreferrer:installreferrer:2.1'
|
|
25
30
|
}
|
|
26
31
|
|
package/changelog.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## 2.8.4
|
|
2
|
+
|
|
3
|
+
**FIXED**
|
|
4
|
+
* Update `Airbridge Android SDK` to 2.24.3
|
|
5
|
+
* Update `Airbridge iOS SDK` to 1.37.0
|
|
6
|
+
* Improved the SKAdNetwork Postback calculator.
|
|
7
|
+
|
|
8
|
+
## 2.8.3
|
|
9
|
+
|
|
10
|
+
**FIXED**
|
|
11
|
+
* Update `Airbridge Android SDK` to 2.24.1
|
|
12
|
+
* Update `Airbridge iOS SDK` to 1.36.5
|
|
13
|
+
* Fixed parsing issue caused by NaN and infinite values
|
|
14
|
+
|
|
15
|
+
**ADDED**
|
|
16
|
+
* Add privacy manifest support.
|
|
17
|
+
|
|
1
18
|
## 2.8.2
|
|
2
19
|
|
|
3
20
|
**ADDED**
|
package/package.json
CHANGED