Skip to content

Commit

Permalink
mod: update
Browse files Browse the repository at this point in the history
  • Loading branch information
kelv1nq1an committed Dec 31, 2020
1 parent 0341a35 commit 3edccfb
Show file tree
Hide file tree
Showing 8 changed files with 218 additions and 183 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ android {
minSdkVersion 21
targetSdkVersion 29
versionCode 1
versionName "1.0.1"
versionName "1.0.2"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down Expand Up @@ -64,9 +64,9 @@ dependencies {
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'

// TAP SDK BEGIN
compile(name:'TapSDK_0.0.20', ext:'aar')
compile(name:'TDSCommon_1.1.3', ext:'aar')
compile(name:'oaid_sdk_1.0.23', ext:'aar')
implementation(name:'TapSDK_0.0.21', ext:'aar')
implementation(name:'TDSCommon_1.1.3', ext:'aar')
implementation(name:'oaid_sdk_1.0.23', ext:'aar')
// TAP SDK END

}
Binary file modified app/libs/TDSCommon_1.1.3.aar
Binary file not shown.
Binary file not shown.
41 changes: 22 additions & 19 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,28 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tds.demo">
package="com.tds.demo">

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

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:configChanges="orientation|keyboardHidden|screenSize|locale|uiMode|screenLayout">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<activity android:name=".tapdb.TapDBActivity" />
<activity
android:name=".tapdb.TapDBActivity"
android:configChanges="orientation|keyboardHidden|screenSize|locale|uiMode|screenLayout" />


</application>
</application>

</manifest>
Loading

0 comments on commit 3edccfb

Please sign in to comment.