Files
OpenPods/app/build.gradle
T
2022-09-29 22:05:54 +03:00

43 lines
942 B
Groovy

apply plugin: 'com.android.application'
android {
namespace 'com.dosse.airpods'
compileSdkVersion 33
buildToolsVersion '33.0.0'
defaultConfig {
applicationId "com.dosse.airpods"
minSdkVersion 23
targetSdkVersion 33
versionCode 21
versionName '1.9'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility = 11
targetCompatibility = 11
}
lint {
abortOnError false
}
}
dependencies {
//noinspection GradleDependency 1.5.0/1.5.1 is broken
implementation 'androidx.appcompat:appcompat:1.4.2'
implementation 'androidx.preference:preference:1.2.0'
}