Files
SpaccDotWeb/SpaccDotWeb.Android/app/build.gradle

36 lines
681 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
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}