Skip to content
This repository has been archived by the owner on Jul 29, 2022. It is now read-only.

gradle config update #21

Merged
merged 1 commit into from
Aug 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.2.50'
ext.kotlin_version = '1.2.61'
ext.support_version = '27.1.1'

repositories {
google()
jcenter()
Expand Down
16 changes: 6 additions & 10 deletions r2-shared/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ android {
flavorDimensions "testapp"

compileSdkVersion 27
buildToolsVersion "27.0.3"

defaultConfig {
minSdkVersion 21
targetSdkVersion 27
Expand Down Expand Up @@ -52,24 +50,22 @@ android {
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation 'com.jakewharton.timber:timber:4.7.0'

implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.jakewharton.timber:timber:4.7.1'
implementation "com.android.support:appcompat-v7:$support_version"
implementation 'com.google.code.gson:gson:2.8.2'
implementation 'com.github.kittinunf.fuel:fuel:1.15.0' //for JVM
implementation 'com.github.kittinunf.fuel:fuel-android:1.15.0' //for Android
implementation 'com.github.kittinunf.fuel:fuel:1.15.0'
implementation 'com.github.kittinunf.fuel:fuel-android:1.15.0'
implementation 'nl.komponents.kovenant:kovenant:3.3.0'
implementation 'nl.komponents.kovenant:kovenant-core:3.3.0'
implementation 'nl.komponents.kovenant:kovenant-android:3.3.0'
implementation 'nl.komponents.kovenant:kovenant-combine:3.3.0'
implementation 'nl.komponents.kovenant:kovenant-jvm:3.3.0'
implementation 'nl.komponents.kovenant:kovenant-functional:3.3.0'
implementation 'joda-time:joda-time:2.9.9'

testImplementation 'junit:junit:4.12'
testImplementation "org.mockito:mockito-core:2.12.0"
testImplementation 'org.mockito:mockito-core:2.12.0'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
Expand Down
Loading