111 lines
3.8 KiB
Groovy
111 lines
3.8 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
|
|
defaultConfig {
|
|
minSdkVersion 19
|
|
targetSdkVersion 30
|
|
|
|
versionCode 15
|
|
versionName '1.3.2'
|
|
|
|
multiDexEnabled true
|
|
vectorDrawables {
|
|
useSupportLibrary true
|
|
}
|
|
}
|
|
|
|
signingConfigs {
|
|
release {
|
|
storeFile file('../store.jks')
|
|
storePassword System.getenv('STORE_PASSWORD')
|
|
keyAlias System.getenv('KEY_ALIAS')
|
|
keyPassword System.getenv('KEY_PASSWORD')
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
shrinkResources true
|
|
minifyEnabled true
|
|
|
|
proguardFiles file('proguard-rules.pro')
|
|
signingConfig signingConfigs.release
|
|
}
|
|
|
|
debug {
|
|
applicationIdSuffix '.debug'
|
|
}
|
|
}
|
|
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
|
|
lintOptions {
|
|
disable 'MissingTranslation'
|
|
abortOnError false
|
|
}
|
|
|
|
compileOptions {
|
|
coreLibraryDesugaringEnabled true
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.10'
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.2'
|
|
|
|
implementation 'com.github.jellyfin.jellyfin-apiclient-java:android:0.7.3'
|
|
implementation 'com.github.woltapp:blurhash:f41a23cc50'
|
|
implementation 'com.google.android.exoplayer:exoplayer:2.12.2'
|
|
implementation 'com.google.android.material:material:1.4.0-rc01'
|
|
|
|
implementation 'androidx.core:core-ktx:1.5.0'
|
|
implementation 'androidx.media:media:1.3.1'
|
|
implementation 'androidx.fragment:fragment-ktx:1.3.4'
|
|
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
|
|
implementation 'androidx.appcompat:appcompat:1.3.0'
|
|
implementation 'androidx.recyclerview:recyclerview:1.2.1'
|
|
implementation 'androidx.gridlayout:gridlayout:1.0.0'
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
implementation 'androidx.palette:palette-ktx:1.0.0'
|
|
implementation 'androidx.annotation:annotation:1.2.0'
|
|
implementation 'androidx.percentlayout:percentlayout:1.0.0'
|
|
implementation 'androidx.preference:preference-ktx:1.1.1'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
|
|
|
|
implementation 'com.github.kabouzeid:RecyclerView-FastScroll:1.0.16-kmod'
|
|
implementation 'com.github.kabouzeid:SeekArc:1.2-kmod'
|
|
implementation 'com.github.kabouzeid:AndroidSlidingUpPanel:3.3.3-kmod'
|
|
|
|
implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
|
|
implementation 'com.afollestad.material-dialogs:commons:0.9.6.0'
|
|
implementation 'com.afollestad:material-cab:0.1.12'
|
|
|
|
implementation 'me.zhanghai.android.materialprogressbar:library:1.6.1'
|
|
implementation 'com.github.QuadFlask:colorpicker:ef73ced217'
|
|
implementation 'com.github.codekidX:storage-chooser:2.0.4.4'
|
|
implementation 'com.pacioianu.david:ink-page-indicator:1.3.0'
|
|
implementation 'com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:1.0.0'
|
|
implementation 'com.android.support:multidex:1.0.3'
|
|
implementation 'com.melegy.redscreenofdeath:red-screen-of-death:0.1.2'
|
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
|
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
|
|
|
|
annotationProcessor 'androidx.room:room-compiler:2.3.0'
|
|
implementation 'androidx.room:room-runtime:2.3.0'
|
|
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
|
|
implementation 'com.github.bumptech.glide:annotations:4.11.0'
|
|
implementation 'com.github.bumptech.glide:glide:4.11.0'
|
|
implementation 'com.github.bumptech.glide:okhttp3-integration:4.11.0'
|
|
}
|