32 lines
665 B
Groovy
32 lines
665 B
Groovy
|
plugins {
|
||
|
id 'com.android.application'
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 29
|
||
|
buildToolsVersion "30.0.3"
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "it.purser.stream"
|
||
|
minSdkVersion 25
|
||
|
targetSdkVersion 29
|
||
|
versionCode 109
|
||
|
versionName "109.0"
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testImplementation 'junit:junit:4.+'
|
||
|
}
|