robot36/app/build.gradle
Ahmet Inan a505e5f937 v2.7
2024-05-08 12:13:15 +02:00

45 lines
1,007 B
Groovy

plugins {
alias(libs.plugins.androidApplication)
}
android {
namespace 'xdsopl.robot36'
compileSdk 34
defaultConfig {
applicationId "xdsopl.robot36"
minSdk 24
targetSdk 34
versionCode 57
versionName "2.7"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildFeatures {
buildConfig true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation libs.appcompat
implementation libs.material
implementation libs.activity
implementation libs.constraintlayout
testImplementation libs.junit
androidTestImplementation libs.ext.junit
androidTestImplementation libs.espresso.core
}