Skip to content

Commit

Permalink
More Gradle updates
Browse files Browse the repository at this point in the history
  • Loading branch information
weliem committed Jun 14, 2021
1 parent f1debd6 commit 646f3c7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
5 changes: 2 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,8 @@ dependencies {
implementation project(':blessed')
testImplementation 'junit:junit:4.13.2'
implementation "androidx.core:core-ktx:1.5.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3-native-mt"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3-native-mt"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0-native-mt"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0-native-mt"
}
repositories {
mavenCentral()
Expand Down
6 changes: 2 additions & 4 deletions blessed/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,13 @@ android {

dependencies {
implementation 'com.jakewharton.timber:timber:4.7.1'
implementation 'org.jetbrains:annotations:19.0.0'
testImplementation 'junit:junit:4.13.2'
testImplementation "org.robolectric:robolectric:4.5.1"
testImplementation "org.mockito:mockito-core:3.8.0"
testImplementation 'androidx.test:core:1.3.0'
implementation "androidx.core:core-ktx:1.5.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3-native-mt"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3-native-mt"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0-native-mt"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0-native-mt"
}
repositories {
mavenCentral()
Expand Down
9 changes: 4 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.5.0'
ext.kotlin_version = '1.5.10'
repositories {
google()
jcenter()

mavenCentral()
}

dependencies {
classpath 'com.android.tools.build:gradle:4.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
Expand All @@ -19,8 +19,7 @@ buildscript {
allprojects {
repositories {
google()
jcenter()

mavenCentral()
}
}

Expand Down

0 comments on commit 646f3c7

Please sign in to comment.