browserocto/app/build.gradle

25 lines
544 B
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
android {
2023-03-02 12:09:13 +01:00
compileSdkVersion 30
buildToolsVersion "21.1.0"
defaultConfig {
applicationId "org.eu.octt.browserocto"
minSdkVersion 1
targetSdkVersion 28
2023-08-08 16:19:06 +02:00
versionCode 999
versionName "999.999.999"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
2023-02-15 00:13:36 +01:00
compile fileTree(dir: 'libs', include: ['*.jar'])
}