BedrockStation/app/build.gradle.example

65 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

2024-08-02 19:51:35 +02:00
plugins {
alias(libs.plugins.android.application)
}
android {
namespace 'me.sergiotarxz.bedrockstation'
compileSdk 34
defaultConfig {
applicationId "me.sergiotarxz.bedrockstation"
2024-08-05 23:20:31 +02:00
minSdk 14
2024-08-02 19:51:35 +02:00
targetSdk 34
2024-08-09 15:35:39 +02:00
versionCode 2
versionName "1.1"
2024-08-02 19:51:35 +02:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
2024-08-05 23:20:31 +02:00
signingConfigs {
release {
storeFile file("<file>")
storePassword "<store pass>"
keyAlias "<alias>"
keyPassword "<pass>"
}
}
2024-08-02 19:51:35 +02:00
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2024-08-05 23:20:31 +02:00
signingConfig signingConfigs.release
2024-08-02 19:51:35 +02:00
}
}
2024-08-05 23:20:31 +02:00
2024-08-02 19:51:35 +02:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
2024-08-05 18:13:22 +02:00
flavorDimensions += "version"
productFlavors {
free {
dimension "version"
applicationIdSuffix ".free"
versionNameSuffix "-free"
}
pro {
dimension "version"
applicationIdSuffix ".pro"
versionNameSuffix "-pro"
}
}
2024-08-02 19:51:35 +02:00
}
dependencies {
implementation libs.appcompat
implementation libs.material
implementation libs.activity
implementation libs.constraintlayout
testImplementation libs.junit
androidTestImplementation libs.ext.junit
androidTestImplementation libs.espresso.core
}