44 lines
1.2 KiB
Groovy
44 lines
1.2 KiB
Groovy
plugins {
|
|
alias(libs.plugins.android.application)
|
|
}
|
|
|
|
android {
|
|
namespace 'com.hfhy.wajecasino.palmgamecy'
|
|
compileSdk 36
|
|
|
|
defaultConfig {
|
|
applicationId "com.hfhy.wajecasino.palmgamecy"
|
|
minSdk 21
|
|
targetSdk 36
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
targetCompatibility JavaVersion.VERSION_11
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation libs.appcompat
|
|
implementation libs.material
|
|
testImplementation libs.junit
|
|
androidTestImplementation libs.ext.junit
|
|
androidTestImplementation libs.espresso.core
|
|
|
|
implementation 'com.google.android.gms:play-services-ads-identifier:18.0.1'
|
|
implementation 'com.adjust.sdk:adjust-android:5.5.0'
|
|
implementation 'com.android.installreferrer:installreferrer:2.2'
|
|
// Add the following if you are using the Adjust SDK inside web views on your app
|
|
implementation 'com.adjust.sdk:adjust-android-webbridge:5.5.0'
|
|
} |