-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
47 lines (37 loc) · 1.08 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
plugins {
id 'com.android.library'
id 'kotlin-android'
}
android {
compileSdk 30
defaultConfig {
minSdk 17
targetSdk 30
consumerProguardFiles "consumer-rules.pro"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'androidx.recyclerview:recyclerview:1.2.0'
implementation 'com.google.code.gson:gson:2.8.8'
implementation 'com.jakewharton:disklrucache:2.0.2'
implementation files('libs/kssdk-ad--3.3.17.aar')
implementation files('libs/jad_yun_sdk_v1.2.8.aar')
implementation files('libs/open_ad_sdk_4.0.1.1.aar')
implementation files('libs/GDTSDK.unionNormal.4.422.1292.aar')
implementation files('libs/Baidu_MobAds_SDK-release_v9.173.aar')
}