-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle
70 lines (61 loc) · 1.78 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
apply plugin: 'com.android.application'
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.2.2'
}
}
ext {
googlePlayServicesVersion = '18.3.0'
googlePlayAdsVersion = '18.0.1'
}
allprojects {
repositories {
google()
mavenCentral()
maven {
url 'https://cboost.jfrog.io/artifactory/chartboost-ads/'
}
}
}
android {
namespace 'com.chartboost.sdk.sample'
compileSdk 34
defaultConfig {
applicationId "com.chartboost.sdk.sample"
minSdkVersion 16
targetSdkVersion 34
multiDexEnabled true
versionCode 11
versionName "9.7.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles 'proguard-project.txt'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
}
dependencies {
//implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation "com.google.android.material:material:1.11.0"
implementation 'com.google.code.gson:gson:2.10'
implementation 'com.chartboost:chartboost-sdk:9.7.0'
implementation 'androidx.preference:preference:1.2.1'
implementation ("com.google.android.gms:play-services-base:$project.ext.googlePlayServicesVersion"){
exclude group: 'com.android.support'
}
implementation ("com.google.android.gms:play-services-ads-identifier:$project.ext.googlePlayAdsVersion"){
exclude group: 'com.android.support'
}
}