diff --git a/app/build.gradle b/app/build.gradle index 59082fed..2fe2d427 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,4 +1,5 @@ apply plugin: 'com.android.application' +apply plugin: 'kotlin-android' android { compileSdkVersion 30 @@ -45,6 +46,9 @@ android { } dependencies { + implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.21' + 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' @@ -79,12 +83,12 @@ dependencies { implementation 'com.android.support:multidex:1.0.3' implementation 'com.melegy.redscreenofdeath:red-screen-of-death:0.1.2' - annotationProcessor 'androidx.room:room-compiler:2.2.5' - implementation 'androidx.room:room-runtime:2.2.5' - implementation 'com.squareup.retrofit2:retrofit:2.9.0' implementation 'com.squareup.retrofit2:converter-gson:2.9.0' + annotationProcessor 'androidx.room:room-compiler:2.2.5' + implementation 'androidx.room:room-runtime:2.2.5' + 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' diff --git a/build.gradle b/build.gradle index 48f55dcc..18a5ee68 100644 --- a/build.gradle +++ b/build.gradle @@ -7,6 +7,7 @@ buildscript { dependencies { classpath 'com.android.tools.build:gradle:4.0.2' classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1' + classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.21' } }