-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
66 lines (53 loc) · 1.77 KB
/
build.gradle
File metadata and controls
66 lines (53 loc) · 1.77 KB
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
plugins {
id("com.android.application") version "8.9.3"
id("org.jetbrains.kotlin.android") version "2.0.21"
}
android {
compileSdk 34
namespace "co.optable.demoappjava"
defaultConfig {
applicationId "co.optable.demoappjava"
minSdkVersion 23
targetSdkVersion 34
versionCode 1
versionName "1.0.0"
archivesBaseName = "optable-android-sdk-demo-java"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "17"
}
}
dependencies {
// Optable SDK
if (useReleaseSdk == "true") {
implementation "com.github.Optable:optable-android-sdk:1.0.0"
} else {
implementation "co.optable:local-sdk"
}
// Google Mobile Ads
implementation 'com.google.android.gms:play-services-ads:24.6.0'
// Prebid Ads
implementation "org.prebid:prebid-mobile-sdk:3.0.2"
// Base Android
implementation "org.jetbrains.kotlin:kotlin-stdlib:2.0.21"
implementation 'com.android.support:multidex:1.0.3'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.navigation:navigation-fragment:2.1.0'
implementation 'androidx.navigation:navigation-ui:2.1.0'
// Testing
testImplementation 'junit:junit:4.13.1'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}