robot36/app/build.gradle

30 lines
712 B
Groovy
Raw Permalink Normal View History

2014-11-23 15:49:23 +01:00
apply plugin: 'com.android.application'
android {
2023-08-11 10:43:10 +02:00
compileSdk 33
2014-11-23 15:49:23 +01:00
defaultConfig {
applicationId "xdsopl.robot36"
2022-10-31 11:35:51 +01:00
minSdkVersion 21
2023-06-27 14:27:30 +02:00
targetSdkVersion 33
2023-07-05 10:33:45 +02:00
versionCode 49
versionName "1.48"
renderscriptTargetApi 21
2014-12-05 12:20:24 +01:00
renderscriptSupportModeEnabled true
2014-11-23 15:49:23 +01:00
}
buildTypes {
release {
2014-12-05 12:20:24 +01:00
minifyEnabled false
2014-11-23 15:49:23 +01:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2022-10-31 11:34:33 +01:00
namespace 'xdsopl.robot36'
2023-06-27 14:27:30 +02:00
buildFeatures {
renderScript true
}
2014-11-23 15:49:23 +01:00
}
dependencies {
2018-04-05 11:40:58 +02:00
implementation fileTree(include: ['*.jar'], dir: 'libs')
2023-06-27 14:27:30 +02:00
implementation 'androidx.appcompat:appcompat:1.6.1'
2014-11-23 15:49:23 +01:00
}