31 lines
744 B
Groovy
31 lines
744 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
buildToolsVersion "33.0.0"
|
|
|
|
defaultConfig {
|
|
applicationId "com.bytecat.algui"
|
|
minSdkVersion 24
|
|
targetSdkVersion 28
|
|
versionCode 121
|
|
versionName "1.2.1"
|
|
renderscriptTargetApi 23
|
|
renderscriptSupportModeEnabled true
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.fragment:fragment:1.3.6'
|
|
implementation 'androidx.interpolator:interpolator:1.0.0'
|
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
|
|
|
}
|