mirror of
https://git.alemi.dev/harvard-android.git
synced 2024-11-14 12:29:19 +01:00
32 lines
824 B
Groovy
32 lines
824 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 33
|
|
defaultConfig {
|
|
applicationId "dev.alemi.sentences"
|
|
minSdkVersion 16
|
|
targetSdkVersion 33
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility 1.8
|
|
targetCompatibility 1.8
|
|
}
|
|
lintOptions { // TODO this is necessary because otherwise it complains that we don't extend Activity...
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation "androidx.appcompat:appcompat-resources:1.6.1"
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.2.0-alpha09'
|
|
implementation 'com.google.android.material:material:1.8.0'
|
|
}
|