Kotlin & Gson Updates

This commit is contained in:
Erik C. Thauvin 2017-09-26 21:20:05 -07:00
parent 777fb1ad65
commit 943a565166
2 changed files with 5 additions and 2 deletions

View file

@ -39,7 +39,7 @@ dependencies {
compile 'org.jetbrains.anko:anko-support-v4:0.10.1' compile 'org.jetbrains.anko:anko-support-v4:0.10.1'
compile 'org.jetbrains.anko:anko-design:0.10.1' compile 'org.jetbrains.anko:anko-design:0.10.1'
compile 'com.android.support:design:26.0.1' compile 'com.android.support:design:26.0.1'
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.1' compile group: 'com.google.code.gson', name: 'gson', version: '2.8.2'
// https://github.com/JakeWharton/ViewPagerIndicator // https://github.com/JakeWharton/ViewPagerIndicator
compile 'fr.avianey.com.viewpagerindicator:library:2.4.1.1@aar' compile 'fr.avianey.com.viewpagerindicator:library:2.4.1.1@aar'

View file

@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules. // Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript { buildscript {
ext.kotlin_version = '1.1.4-2' ext.kotlin_version = '1.1.50'
repositories { repositories {
jcenter() jcenter()
} }
@ -17,6 +17,9 @@ buildscript {
allprojects { allprojects {
repositories { repositories {
jcenter() jcenter()
flatDir {
dirs 'libs'
}
} }
} }