Skip to content

Commit 9625b54

Browse files
DylanGrahambkase
authored andcommitted
Studio 2.3.2, SDK 25 and support lib updated. (#2)
* Gradle version for Studio 2.3.2. SDK 25 and support lib updated. * kotlin 1.1.2-3 * .idea
1 parent 1fa931a commit 9625b54

File tree

5 files changed

+15
-16
lines changed

5 files changed

+15
-16
lines changed

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
*.iml
22
.gradle
33
/local.properties
4-
/.idea/workspace.xml
5-
/.idea/libraries
4+
/.idea
65
.DS_Store
76
/build
87
/captures

app/build.gradle

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ apply plugin: 'com.android.application'
22
apply plugin: 'kotlin-android'
33

44
android {
5-
compileSdkVersion 23
6-
buildToolsVersion "23.0.3"
5+
compileSdkVersion 25
6+
buildToolsVersion "25.0.2"
77

88
defaultConfig {
99
applicationId "com.bkase.cyklic.example.app"
1010
minSdkVersion 16
11-
targetSdkVersion 23
11+
targetSdkVersion 25
1212
versionCode 1
1313
versionName "1.0"
1414
}
@@ -27,12 +27,12 @@ dependencies {
2727
compile fileTree(dir: 'libs', include: ['*.jar'])
2828
compile project(path: ':lib')
2929
testCompile 'junit:junit:4.12'
30-
compile 'com.android.support:appcompat-v7:23.2.1'
31-
compile 'com.android.support:design:23.2.1'
30+
compile 'com.android.support:appcompat-v7:25.3.1'
31+
compile 'com.android.support:design:25.3.1'
3232
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
3333
}
3434
buildscript {
35-
ext.kotlin_version = '1.0.1-1'
35+
ext.kotlin_version = '1.1.2-3'
3636
repositories {
3737
mavenCentral()
3838
}

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:1.5.0'
8+
classpath 'com.android.tools.build:gradle:2.3.2'
99

1010
// NOTE: Do not place your application dependencies here; they belong
1111
// in the individual module build.gradle files
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Oct 21 11:34:03 PDT 2015
1+
#Mon May 15 16:57:26 AEST 2017
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip

lib/build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version = '1.0.1-1'
2+
ext.kotlin_version = '1.1.2-3'
33
repositories {
44
mavenCentral()
55
}
@@ -13,12 +13,12 @@ apply plugin: 'com.android.library'
1313
apply plugin: 'kotlin-android'
1414

1515
android {
16-
compileSdkVersion 23
17-
buildToolsVersion "23.0.3"
16+
compileSdkVersion 25
17+
buildToolsVersion "25.0.2"
1818

1919
defaultConfig {
2020
minSdkVersion 16
21-
targetSdkVersion 23
21+
targetSdkVersion 25
2222
versionCode 1
2323
versionName "0.1.0"
2424
}
@@ -36,7 +36,7 @@ android {
3636
dependencies {
3737
compile fileTree(dir: 'libs', include: ['*.jar'])
3838
testCompile 'junit:junit:4.12'
39-
compile 'com.android.support:appcompat-v7:23.2.1'
39+
compile 'com.android.support:appcompat-v7:25.3.1'
4040
compile 'io.reactivex:rxjava:1.1.2'
4141
compile 'io.reactivex:rxandroid:1.1.0'
4242
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"

0 commit comments

Comments
 (0)