mirror of
https://github.com/xdsopl/robot36.git
synced 2026-01-07 08:49:56 +01:00
27 lines
667 B
Groovy
27 lines
667 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
buildToolsVersion "29.0.2"
|
|
compileSdkVersion 29
|
|
defaultConfig {
|
|
applicationId "xdsopl.robot36"
|
|
minSdkVersion 16
|
|
targetSdkVersion 29
|
|
versionCode 44
|
|
versionName "1.43"
|
|
renderscriptTargetApi 21
|
|
renderscriptSupportModeEnabled true
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation 'androidx.appcompat:appcompat:1.0.0'
|
|
}
|