Skip to content

Commit

Permalink
AndroidStudio 3.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
koji-1009 committed Sep 25, 2019
1 parent 7f7262a commit cced527
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
9 changes: 6 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.3.21'
ext {
kotlin_version = '1.3.41'
kotlin_cotoutines_version = '1.2.1'
}
ext.versions = [
'compileSdk' : 28,
'minSdk' : 21,
'targetSdk' : 28,
'appcompat' : '1.0.2',
'appcompat' : '1.1.0',
'constraintLayout': '1.1.3'
]
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
classpath 'com.android.tools.build:gradle:3.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand Down
5 changes: 2 additions & 3 deletions studyplus-android-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,8 @@ dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"

def coroutines = "1.1.1"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlin_cotoutines_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlin_cotoutines_version"

implementation 'androidx.annotation:annotation:1.1.0'

Expand Down

0 comments on commit cced527

Please sign in to comment.