robot36/app/build.gradle

45 lines
1,007 B
Groovy
Raw Normal View History

2024-04-12 11:48:25 +02:00
plugins {
alias(libs.plugins.androidApplication)
}
android {
namespace 'xdsopl.robot36'
compileSdk 34
defaultConfig {
applicationId "xdsopl.robot36"
minSdk 24
targetSdk 34
2024-05-08 12:13:15 +02:00
versionCode 57
versionName "2.7"
2024-04-12 11:48:25 +02:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
2024-04-25 20:13:04 +02:00
buildFeatures {
buildConfig true
}
2024-04-12 11:48:25 +02:00
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
2024-04-12 12:04:58 +02:00
}