mirror of
https://gitlab.com/SpaccInc/SpaccDotWeb.git
synced 2025-02-21 13:50:41 +01:00
29 lines
563 B
Groovy
29 lines
563 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
|
||
|
signingConfig signingConfigs.debug
|
||
|
}
|
||
|
}
|
||
|
|
||
|
compileSdk 34
|
||
|
}
|