mirror of
https://gitlab.com/SpaccInc/SpaccDotWeb.git
synced 2025-02-17 20:00:43 +01:00
30 lines
596 B
Groovy
30 lines
596 B
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
// Adjust the very following based on the application to ship
|
|
namespace 'com.example.spaccwebviewapplication'
|
|
defaultConfig {
|
|
applicationId 'com.example.spaccwebviewapplication'
|
|
versionCode 1
|
|
versionName '1.0'
|
|
|
|
minSdk 1
|
|
targetSdk 34
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
applicationIdSuffix '.dbg'
|
|
}
|
|
release {
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
signingConfig signingConfigs.debug
|
|
}
|
|
}
|
|
|
|
compileSdk 34
|
|
}
|