mirror of
https://github.com/adolfintel/OpenPods.git
synced 2026-09-14 14:56:11 -04:00
39 lines
855 B
Groovy
39 lines
855 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 31
|
|
buildToolsVersion '32.0.0'
|
|
|
|
defaultConfig {
|
|
applicationId "com.dosse.airpods"
|
|
minSdkVersion 23
|
|
targetSdkVersion 31
|
|
versionCode 20
|
|
versionName '1.8'
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = 11
|
|
targetCompatibility = 11
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.appcompat:appcompat:1.4.1'
|
|
implementation 'androidx.preference:preference:1.2.0'
|
|
}
|