85 lines
2.8 KiB
Groovy
85 lines
2.8 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
buildToolsVersion '28.0.3'
|
|
|
|
defaultConfig {
|
|
minSdkVersion 19
|
|
targetSdkVersion 28
|
|
|
|
versionCode 4
|
|
versionName '1.0.3'
|
|
|
|
vectorDrawables {
|
|
useSupportLibrary = true
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
shrinkResources true
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
|
|
debug {
|
|
applicationIdSuffix '.debug'
|
|
}
|
|
}
|
|
|
|
buildFeatures {
|
|
viewBinding = true
|
|
}
|
|
|
|
lintOptions {
|
|
disable 'MissingTranslation'
|
|
abortOnError false
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.github.jellyfin.jellyfin-apiclient-java:android:0.6.3'
|
|
implementation 'com.google.android.exoplayer:exoplayer:2.11.4'
|
|
|
|
implementation 'androidx.core:core:1.3.1'
|
|
implementation 'androidx.media:media:1.1.0'
|
|
implementation 'androidx.fragment:fragment:1.2.5'
|
|
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
implementation 'androidx.recyclerview:recyclerview:1.1.0'
|
|
implementation 'androidx.gridlayout:gridlayout:1.0.0'
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
|
implementation 'androidx.palette:palette:1.0.0'
|
|
implementation 'androidx.annotation:annotation:1.1.0'
|
|
implementation 'androidx.percentlayout:percentlayout:1.0.0'
|
|
implementation 'androidx.preference:preference:1.1.1'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
|
|
implementation 'com.github.kabouzeid:app-theme-helper:1.3.10'
|
|
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 'com.heinrichreimersoftware:material-intro:1.6'
|
|
implementation 'com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.11.0'
|
|
|
|
implementation 'com.jakewharton:butterknife:10.1.0'
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0'
|
|
|
|
implementation 'com.squareup.retrofit2:retrofit:2.5.0'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
|
|
implementation 'com.google.android.material:material:1.1.0'
|
|
|
|
implementation 'com.github.bumptech.glide:glide:3.8.0'
|
|
implementation 'com.github.bumptech.glide:okhttp3-integration:1.5.0'
|
|
}
|