browserocto/app/build.gradle

25 lines
544 B
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 30
buildToolsVersion "21.1.0"
defaultConfig {
applicationId "org.eu.octt.browserocto"
minSdkVersion 1
targetSdkVersion 28
versionCode 999
versionName "999.999.999"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}