20 lines
454 B
Groovy
20 lines
454 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
namespace "net.crystalyx.fxpix"
|
|
compileSdk 33
|
|
defaultConfig {
|
|
applicationId "net.crystalyx.fxpix"
|
|
minSdkVersion 3
|
|
targetSdkVersion 33
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|