fileify/app/build.gradle

29 lines
469 B
Groovy

plugins {
id 'com.android.application'
}
android {
compileSdk 32
defaultConfig {
applicationId "com.blankie.fileify"
minSdk 28
targetSdk 32
versionCode 2
versionName "1.0.1"
}
buildTypes {
release {
minifyEnabled false
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
}