BedrockStation/app/build.gradle

41 lines
984 B
Groovy
Raw 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"
minSdk 33
targetSdk 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}
dependencies {
implementation libs.appcompat
implementation libs.material
implementation libs.activity
implementation libs.constraintlayout
testImplementation libs.junit
androidTestImplementation libs.ext.junit
androidTestImplementation libs.espresso.core
}