49 lines
1.4 KiB
Plaintext
49 lines
1.4 KiB
Plaintext
|
|
plugins {
|
||
|
|
alias(libs.plugins.androidLibrary)
|
||
|
|
alias(libs.plugins.kotlinAndroid)
|
||
|
|
}
|
||
|
|
|
||
|
|
android {
|
||
|
|
namespace = "com.gamedog.statisticreporter"
|
||
|
|
compileSdk = 36
|
||
|
|
|
||
|
|
defaultConfig {
|
||
|
|
minSdk = 24
|
||
|
|
|
||
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||
|
|
consumerProguardFiles("consumer-rules.pro")
|
||
|
|
}
|
||
|
|
|
||
|
|
buildTypes {
|
||
|
|
release {
|
||
|
|
isMinifyEnabled = false
|
||
|
|
proguardFiles(
|
||
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||
|
|
"proguard-rules.pro"
|
||
|
|
)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
compileOptions {
|
||
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
||
|
|
targetCompatibility = JavaVersion.VERSION_11
|
||
|
|
}
|
||
|
|
kotlinOptions {
|
||
|
|
jvmTarget = "11"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
implementation(libs.androidx.core.ktx)
|
||
|
|
implementation(libs.appcompat)
|
||
|
|
implementation(libs.material)
|
||
|
|
testImplementation(libs.junit)
|
||
|
|
androidTestImplementation(libs.androidx.test.ext.junit)
|
||
|
|
androidTestImplementation(libs.espresso.core)
|
||
|
|
|
||
|
|
api("com.adjust.sdk:adjust-android:5.5.0")
|
||
|
|
api("com.android.installreferrer:installreferrer:2.2")
|
||
|
|
// Add the following if you are using the Adjust SDK inside web views on your app
|
||
|
|
api("com.adjust.sdk:adjust-android-webbridge:5.5.0")
|
||
|
|
api("com.android.installreferrer:installreferrer:2.2")
|
||
|
|
api("com.adjust.sdk:adjust-android-huawei-referrer:5.0.0")
|
||
|
|
}
|