Skip to content

Commit

Permalink
Merge pull request #15 from DeployGate/release-4.1.0
Browse files Browse the repository at this point in the history
Release 4.1.0
  • Loading branch information
tnj authored Mar 8, 2018
2 parents 27cb0ca + a323d1d commit 70fa50d
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ language: android
sudo: false
android:
components:
- build-tools-25.0.2
- android-25
- build-tools-27.0.3
- android-27
jdk:
- oraclejdk8
before_cache:
Expand All @@ -14,8 +14,8 @@ cache:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
- $HOME/.android/build-cache
- $ANDROID_HOME/build-tools/25.0.2
- $ANDROID_HOME/platforms/android-25
- $ANDROID_HOME/build-tools/27.0.3
- $ANDROID_HOME/platforms/android-27
- $ANDROID_HOME/extras/android/m2repository
- $ANDROID_HOME/extras/google/m2repository
before_install:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repositories {
dependencies {
// use `compile` instead of `implementation` for Android Build Tools < 3.0
implementation 'com.deploygate:sdk:4.0.0'
implementation 'com.deploygate:sdk:4.1.0'
}
```

Expand Down Expand Up @@ -71,10 +71,10 @@ like the following example:
```gradle
dependencies {
// use full implementation for debug builds
debugImplementation 'com.deploygate:sdk:4.0.0'
debugImplementation 'com.deploygate:sdk:4.1.0'
// use mocked implementation for release builds
releaseImplementation 'com.deploygate:sdk-mock:4.0.0'
releaseImplementation 'com.deploygate:sdk-mock:4.1.0'
}
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
ext {
releaseVersion = '4.0.0'
releaseVersion = '4.1.0'
}

buildscript {
Expand All @@ -10,7 +10,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-beta2'
classpath 'com.android.tools.build:gradle:3.0.1'

classpath 'com.novoda:bintray-release:0.5.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3' // 1.7.1+ is required for Java 7
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Aug 09 18:31:50 JST 2017
#Thu Mar 08 14:47:02 JST 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-rc-1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
6 changes: 3 additions & 3 deletions sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ apply plugin: 'com.novoda.bintray-release'
version = rootProject.ext.releaseVersion

android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
compileSdkVersion 27
buildToolsVersion "27.0.3"

defaultConfig {
minSdkVersion 7
targetSdkVersion 25
targetSdkVersion 27
versionCode 1
versionName project.version

Expand Down
6 changes: 3 additions & 3 deletions sdkMock/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ apply plugin: 'com.novoda.bintray-release'
version = rootProject.ext.releaseVersion

android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
compileSdkVersion 27
buildToolsVersion "27.0.3"

defaultConfig {
minSdkVersion 7
targetSdkVersion 25
targetSdkVersion 27
versionCode 1
versionName project.version

Expand Down

0 comments on commit 70fa50d

Please sign in to comment.