mirror of
https://github.com/wasabeef/glide-transformations.git
synced 2025-06-08 07:24:05 +08:00
* format * update copyright * remove -android.namespacedRClass * update compile&target sdk version to 30 * update dependencies * update gitignore * update samples dependencies * update signinconfig * bump up to 4.2.0 * bump up to 4.2.0
45 lines
1.2 KiB
Groovy
45 lines
1.2 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
android {
|
|
compileSdkVersion COMPILE_SDK_VERSION as int
|
|
|
|
defaultConfig {
|
|
minSdkVersion MIN_SDK_VERSION as int
|
|
targetSdkVersion TARGET_SDK_VERSION as int
|
|
versionCode VERSION_CODE as int
|
|
versionName VERSION_NAME
|
|
|
|
renderscriptTargetApi TARGET_SDK_VERSION as int
|
|
renderscriptSupportModeEnabled true
|
|
}
|
|
|
|
// SigningConfigs
|
|
apply from: '../signingConfigs/debug.gradle', to: android
|
|
|
|
buildTypes {
|
|
debug {
|
|
debuggable true
|
|
signingConfig signingConfigs.debug
|
|
}
|
|
release {
|
|
debuggable false
|
|
zipAlignEnabled true
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':transformations')
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
implementation "com.github.bumptech.glide:glide:$glide_version"
|
|
kapt "com.github.bumptech.glide:compiler:$glide_version"
|
|
implementation "jp.co.cyberagent.android:gpuimage:$gpuimage_version"
|
|
implementation "androidx.appcompat:appcompat:1.3.0-alpha02"
|
|
implementation "androidx.recyclerview:recyclerview:1.2.0-alpha05"
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
|
|
}
|