tempus/app/build.gradle
2021-07-16 18:47:10 +02:00

102 lines
No EOL
3.2 KiB
Groovy

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
android {
compileSdkVersion 30
buildToolsVersion '30.0.3'
defaultConfig {
applicationId "com.cappielloantonio.play"
minSdkVersion 26
targetSdkVersion 30
versionCode 1
versionName "1.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility 1.8
targetCompatibility 1.8
}
buildFeatures {
viewBinding = true
}
packagingOptions {
exclude 'META-INF/NOTICE.md'
exclude 'META-INF/LICENSE.md'
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
// Jellyfin
implementation 'com.github.jellyfin.jellyfin-apiclient-java:android:0.7.7'
// Subsonic
implementation 'net.beardbot:subsonic-client:0.2.0'
// Kotlin
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.5.10'
// AndroidX
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation "androidx.coordinatorlayout:coordinatorlayout:1.1.0"
implementation 'androidx.preference:preference-ktx:1.1.1'
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.5'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation "androidx.room:room-runtime:2.3.0"
implementation "androidx.cardview:cardview:1.0.0"
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation "androidx.lifecycle:lifecycle-common-java8:2.3.1"
// Android Material
implementation 'com.google.android.material:material:1.4.0'
// VolleyRequest
implementation 'com.android.volley:volley:1.2.0'
// SearchBar
implementation "com.paulrybitskyi.persistentsearchview:persistentsearchview:1.1.3"
implementation "com.arthurivanets.adapster:adapster:1.0.13"
// Permission
implementation 'pub.devrel:easypermissions:3.0.0'
// Glide
implementation 'com.github.bumptech.glide:glide:4.12.0'
implementation 'com.github.bumptech.glide:annotations:4.12.0'
implementation 'com.github.bumptech.glide:okhttp3-integration:4.12.0'
implementation "com.github.woltapp:blurhash:f41a23cc50"
// Exoplayer
implementation 'com.google.android.exoplayer:exoplayer:2.12.2'
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
annotationProcessor "androidx.room:room-compiler:2.3.0"
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
// Database debugger via adb
// debugImplementation 'com.amitshekhar.android:debug-db:1.0.6'
// Square - Canary
// debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.7'
// Red screen of death
debugImplementation 'com.melegy.redscreenofdeath:red-screen-of-death:0.1.2'
}