This repository has been archived on 2023-09-03. You can view files and clone it, but cannot push or open issues or pull requests.
FxPix/app/build.gradle

20 lines
454 B
Groovy
Raw Normal View History

2023-07-24 12:14:06 +00:00
apply plugin: 'com.android.application'
android {
2023-07-31 20:27:37 +00:00
namespace "net.crystalyx.fxpix"
compileSdk 33
2023-07-24 12:14:06 +00:00
defaultConfig {
2023-07-31 20:27:37 +00:00
applicationId "net.crystalyx.fxpix"
2023-07-24 12:14:06 +00:00
minSdkVersion 3
targetSdkVersion 33
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}