File tree 6 files changed +1332
-8243
lines changed
6 files changed +1332
-8243
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 2.1.8 (08 April, 2023)
4
+ - [ change] Update Android dependency (TapsellPlus) to ` 2.1.8 `
5
+ - [ change] Update Android ` targetSdkVersion ` to 33
6
+ - [ New] Added dynamic configs for ` backPressed ` final banner in video ads
7
+ - [ New] Add dynamic configs for back alert dialog in videos
8
+ - [ Fix] Update UnityAds to V4.3.0 and fix deprecations based on ([ UnityAds API] ( https://docs.unity.com/ads/UnityAPI.html ) )
9
+
3
10
## 2.1.8-rc01 (02 August, 2022)
4
11
- [ change] Update Android dependency (TapsellPlus) to 2.1.8-rc01
5
12
Original file line number Diff line number Diff line change 1
1
2
2
buildscript {
3
3
repositories {
4
+ google()
5
+ mavenCentral()
4
6
jcenter()
5
7
}
6
8
7
9
dependencies {
8
- classpath ' com.android.tools.build:gradle:1.3.1 '
10
+ classpath ' com.android.tools.build:gradle:7.4.2 '
9
11
}
10
12
}
11
13
12
14
apply plugin : ' com.android.library'
13
15
14
16
android {
15
- compileSdkVersion 29
16
- buildToolsVersion " 29.0.2"
17
+ compileSdkVersion 33
17
18
18
19
defaultConfig {
19
20
minSdkVersion 16
20
- targetSdkVersion 29
21
+ targetSdkVersion 33
21
22
versionCode 1
22
23
versionName " 1.0"
23
24
}
@@ -28,12 +29,14 @@ android {
28
29
29
30
rootProject. allprojects {
30
31
repositories {
32
+ google()
31
33
mavenCentral()
34
+ jcenter()
32
35
}
33
36
}
34
37
35
38
dependencies {
36
39
// noinspection GradleDynamicVersion
37
40
implementation ' com.facebook.react:react-native:+'
38
- implementation ' ir.tapsell.plus:tapsell-plus-sdk-reactnative:2.1.8-rc01 '
41
+ implementation ' ir.tapsell.plus:tapsell-plus-sdk-reactnative:2.1.8'
39
42
}
Original file line number Diff line number Diff line change 2
2
<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
3
package =" ir.tapsell.plus" >
4
4
5
+ <application
6
+ android : usesCleartextTraffic =" true"
7
+ android : networkSecurityConfig =" @xml/network_security_config" />
8
+
5
9
</manifest >
6
10
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <network-security-config >
3
+ <base-config cleartextTrafficPermitted =" false" />
4
+ <domain-config cleartextTrafficPermitted =" true" >
5
+ <domain includeSubdomains =" true" >127.0.0.1</domain >
6
+ <domain includeSubdomains =" true" >localhost</domain >
7
+ <domain includeSubdomains =" true" >10.0.2.2</domain >
8
+ <domain includeSubdomains =" true" >10.0.3.2</domain >
9
+ </domain-config >
10
+ </network-security-config >
You can’t perform that action at this time.
0 commit comments