2024-04-12 11:48:25 +02:00
|
|
|
plugins {
|
|
|
|
|
alias(libs.plugins.androidApplication)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
namespace 'xdsopl.robot36'
|
2025-08-20 10:38:30 +02:00
|
|
|
compileSdk = 36
|
2024-04-12 11:48:25 +02:00
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
|
applicationId "xdsopl.robot36"
|
|
|
|
|
minSdk 24
|
2025-08-20 10:38:30 +02:00
|
|
|
targetSdk 36
|
2025-02-26 08:26:29 +01:00
|
|
|
versionCode 65
|
|
|
|
|
versionName "2.15"
|
2024-04-12 11:48:25 +02:00
|
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-16 08:36:53 +02:00
|
|
|
androidResources {
|
|
|
|
|
generateLocaleConfig true
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
}
|