Skip to content

Commit 3edccfb

Browse files
committed
mod: update
1 parent 0341a35 commit 3edccfb

File tree

8 files changed

+218
-183
lines changed

8 files changed

+218
-183
lines changed

app/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ android {
99
minSdkVersion 21
1010
targetSdkVersion 29
1111
versionCode 1
12-
versionName "1.0.1"
12+
versionName "1.0.2"
1313

1414
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1515
}
@@ -64,9 +64,9 @@ dependencies {
6464
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
6565

6666
// TAP SDK BEGIN
67-
compile(name:'TapSDK_0.0.20', ext:'aar')
68-
compile(name:'TDSCommon_1.1.3', ext:'aar')
69-
compile(name:'oaid_sdk_1.0.23', ext:'aar')
67+
implementation(name:'TapSDK_0.0.21', ext:'aar')
68+
implementation(name:'TDSCommon_1.1.3', ext:'aar')
69+
implementation(name:'oaid_sdk_1.0.23', ext:'aar')
7070
// TAP SDK END
7171

7272
}

app/libs/TDSCommon_1.1.3.aar

1.69 KB
Binary file not shown.
Binary file not shown.

app/src/main/AndroidManifest.xml

+22-19
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,31 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.tds.demo">
3+
package="com.tds.demo">
44

5-
<uses-permission android:name="android.permission.INTERNET" />
5+
<uses-permission android:name="android.permission.INTERNET" />
66

7-
<application
8-
android:allowBackup="true"
9-
android:icon="@mipmap/ic_launcher"
10-
android:label="@string/app_name"
11-
android:networkSecurityConfig="@xml/network_security_config"
12-
android:roundIcon="@mipmap/ic_launcher_round"
13-
android:supportsRtl="true"
14-
android:theme="@style/AppTheme">
15-
<activity android:name=".MainActivity">
16-
<intent-filter>
17-
<action android:name="android.intent.action.MAIN" />
7+
<application
8+
android:allowBackup="true"
9+
android:icon="@mipmap/ic_launcher"
10+
android:label="@string/app_name"
11+
android:networkSecurityConfig="@xml/network_security_config"
12+
android:roundIcon="@mipmap/ic_launcher_round"
13+
android:supportsRtl="true"
14+
android:theme="@style/AppTheme">
15+
<activity
16+
android:name=".MainActivity"
17+
android:configChanges="orientation|keyboardHidden|screenSize|locale|uiMode|screenLayout">
18+
<intent-filter>
19+
<action android:name="android.intent.action.MAIN" />
1820

19-
<category android:name="android.intent.category.LAUNCHER" />
20-
</intent-filter>
21-
</activity>
21+
<category android:name="android.intent.category.LAUNCHER" />
22+
</intent-filter>
23+
</activity>
2224

23-
<activity android:name=".tapdb.TapDBActivity" />
25+
<activity
26+
android:name=".tapdb.TapDBActivity"
27+
android:configChanges="orientation|keyboardHidden|screenSize|locale|uiMode|screenLayout" />
2428

25-
26-
</application>
29+
</application>
2730

2831
</manifest>

0 commit comments

Comments
 (0)