Skip to content

Commit ffa0e93

Browse files
committed
Publish version 2.1.8
1 parent 3b2fc9d commit ffa0e93

File tree

6 files changed

+1332
-8243
lines changed

6 files changed

+1332
-8243
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

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+
310
## 2.1.8-rc01 (02 August, 2022)
411
- [change] Update Android dependency (TapsellPlus) to 2.1.8-rc01
512

android/build.gradle

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11

22
buildscript {
33
repositories {
4+
google()
5+
mavenCentral()
46
jcenter()
57
}
68

79
dependencies {
8-
classpath 'com.android.tools.build:gradle:1.3.1'
10+
classpath 'com.android.tools.build:gradle:7.4.2'
911
}
1012
}
1113

1214
apply plugin: 'com.android.library'
1315

1416
android {
15-
compileSdkVersion 29
16-
buildToolsVersion "29.0.2"
17+
compileSdkVersion 33
1718

1819
defaultConfig {
1920
minSdkVersion 16
20-
targetSdkVersion 29
21+
targetSdkVersion 33
2122
versionCode 1
2223
versionName "1.0"
2324
}
@@ -28,12 +29,14 @@ android {
2829

2930
rootProject.allprojects {
3031
repositories {
32+
google()
3133
mavenCentral()
34+
jcenter()
3235
}
3336
}
3437

3538
dependencies {
3639
//noinspection GradleDynamicVersion
3740
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'
3942
}

android/src/main/AndroidManifest.xml

+4
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,9 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="ir.tapsell.plus">
44

5+
<application
6+
android:usesCleartextTraffic="true"
7+
android:networkSecurityConfig="@xml/network_security_config"/>
8+
59
</manifest>
610

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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>

0 commit comments

Comments
 (0)