2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-28 20:57:42 +00:00

Add Kotlin dependencies.

This commit is contained in:
Isira Seneviratne 2020-07-07 19:03:02 +05:30 committed by Philip Cohn-Cort
parent 771dab54c3
commit e4774b5d17

View File

@ -3,14 +3,17 @@ import com.android.build.gradle.api.ApkVariantOutput
import com.android.build.gradle.api.ApplicationVariant import com.android.build.gradle.api.ApplicationVariant
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
buildscript { buildscript {
ext.kotlin_version = '1.3.72'
repositories { repositories {
jcenter() jcenter()
google() google()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:4.0.0' classpath 'com.android.tools.build:gradle:4.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
} }
} }
@ -33,6 +36,9 @@ android {
// Flag to enable support for the new language APIs // Flag to enable support for the new language APIs
coreLibraryDesugaringEnabled true coreLibraryDesugaringEnabled true
} }
kotlinOptions {
jvmTarget = '1.8'
}
sourceSets { sourceSets {
main { main {
manifest.srcFile 'AndroidManifest.xml' manifest.srcFile 'AndroidManifest.xml'
@ -123,6 +129,10 @@ Provider<String> gitHashProvider = project.provider {
} }
} }
ext {
coroutines_version = '1.3.6'
}
dependencies { dependencies {
repositories { repositories {
@ -140,6 +150,7 @@ dependencies {
implementation 'androidx.media:media:1.1.0' implementation 'androidx.media:media:1.1.0'
implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.core:core-ktx:1.3.0'
implementation 'androidx.preference:preference:1.1.1' implementation 'androidx.preference:preference:1.1.1'
implementation 'androidx.recyclerview:recyclerview:1.1.0' implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.0.0' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.0.0'
@ -169,6 +180,11 @@ dependencies {
implementation 'org.apache.commons:commons-collections4:4.4' implementation 'org.apache.commons:commons-collections4:4.4'
// Kotlin
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
// Testing // Testing
testImplementation 'junit:junit:4.12' testImplementation 'junit:junit:4.12'
testImplementation 'org.powermock:powermock-core:2.0.0' testImplementation 'org.powermock:powermock-core:2.0.0'
@ -180,4 +196,5 @@ dependencies {
repositories { repositories {
google() google()
mavenCentral()
} }