Skip to content

Commit dc7ac4c

Browse files
author
Roger Hu
committed
bump versions
1 parent a6071a6 commit dc7ac4c

File tree

4 files changed

+13
-18
lines changed

4 files changed

+13
-18
lines changed

.travis.yml

+3-7
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,10 @@ android:
66
components:
77
- tools
88
- platform-tools
9-
- build-tools-27.0.3
10-
- android-27
11-
- extra-android-m2repository
12-
- extra-google-m2repository
13-
licenses:
14-
- android-sdk-license-.+
9+
- build-tools-28.0.3
10+
- android-28
1511
before_install:
16-
- yes | sdkmanager "platforms;android-27"
12+
- yes | sdkmanager "platforms;android-28"
1713
script:
1814
- "./gradlew build check --daemon"
1915
after_failure: "cat $TRAVIS_BUILD_DIR/app/build/outputs/lint-results.xml"

app/build.gradle

+5-6
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ apply plugin: 'com.jfrog.bintray'
77
ext {
88

99
GROUP = 'com.codepath.libraries'
10-
BASE_VERSION = "1.3"
11-
VERSION_NAME = "1.3.1"
10+
BASE_VERSION = "1.4"
11+
VERSION_NAME = "1.4.0"
1212
POM_PACKAGING = "aar"
1313
POM_DESCRIPTION = "CodePath OAuth Handler"
1414

@@ -32,14 +32,13 @@ group = GROUP
3232
archivesBaseName = POM_ARTIFACT_ID
3333

3434
android {
35-
compileSdkVersion 27
36-
buildToolsVersion "27.0.3"
35+
compileSdkVersion 28
3736

3837
defaultConfig {
3938
versionCode 1
4039
versionName VERSION_NAME
4140
minSdkVersion 14
42-
targetSdkVersion 27
41+
targetSdkVersion 28
4342
}
4443

4544
// Related to https://github.com/scribejava/scribejava/issues/480
@@ -111,7 +110,7 @@ bintray {
111110
}
112111

113112
ext {
114-
supportVersion = '27.1.0'
113+
supportVersion = '28.0.0'
115114
}
116115

117116
dependencies {

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
33
repositories {
4-
jcenter()
54
google()
5+
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:3.0.1'
8+
classpath 'com.android.tools.build:gradle:3.3.0'
99
}
1010
}
1111

@@ -24,8 +24,8 @@ bintray {
2424

2525
allprojects {
2626
repositories {
27-
jcenter()
2827
google()
28+
jcenter()
2929
}
3030
}
3131
/*
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sat Mar 31 23:33:37 PDT 2018
1+
#Mon Jan 28 10:39:02 PST 2019
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-4.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip

0 commit comments

Comments
 (0)