37 lines
1.0 KiB
Groovy
37 lines
1.0 KiB
Groovy
|
plugins {
|
||
|
id 'com.android.library'
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace 'com.shatteredpixel.shatteredpixeldungeon.services.analyticsfirebase'
|
||
|
compileSdk 33
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdk 19
|
||
|
targetSdk 33
|
||
|
|
||
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||
|
consumerProguardFiles "consumer-rules.pro"
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_11
|
||
|
targetCompatibility JavaVersion.VERSION_11
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation project(':SPD-classes')
|
||
|
api project(':services')
|
||
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
||
|
implementation 'com.google.android.material:material:1.5.0'
|
||
|
testImplementation 'junit:junit:4.13.2'
|
||
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
||
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
||
|
}
|