diff options
| author | Ralf Kistner <ralf@embarkmobile.com> | 2015-04-05 22:42:21 +0300 |
|---|---|---|
| committer | Ralf Kistner <ralf@embarkmobile.com> | 2015-04-05 22:44:47 +0300 |
| commit | 7a4fd34cff0fd0cedf927d93f1f01bb028043eac (patch) | |
| tree | 49b904f95ad3f665602d20ee802a0cfcb8584ca8 | |
| parent | 623cc0e79c49cc7f27dc588a19e446c94bfd1cd9 (diff) | |
| download | zxing-android-embedded-3.0.0-beta1.tar.xz | |
3.0.0-beta1v3.0.0-beta1
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | build.gradle | 7 |
2 files changed, 6 insertions, 3 deletions
@@ -41,7 +41,7 @@ repositories { } dependencies { - compile 'com.journeyapps:zxing-android-embedded:3.0.0@aar' + compile 'com.journeyapps:zxing-android-embedded:3.0.0-beta1@aar' } ``` diff --git a/build.gradle b/build.gradle index eeb7066c..4bc9695c 100644 --- a/build.gradle +++ b/build.gradle @@ -10,14 +10,14 @@ buildscript { } // Projects to be published to bintray -def PUBLISH_PROJECTS = ['zxing-android', 'zxing-android-legacy', 'integration'] +def PUBLISH_PROJECTS = ['zxing-android-embedded'] subprojects { repositories { jcenter() } - version = '2.3.0' + version = '3.0.0-beta1' group = 'com.journeyapps' apply plugin: 'android-sdk-manager' @@ -70,6 +70,9 @@ subprojects { } } + // To release, place bintray_user and bintray_key properties in ~/.gradle/gradle.properties, + // and run ./gradlew clean assembleRelease bintrayUpload + if(project.hasProperty('bintray_user') && project.hasProperty('bintray_key')) { bintray { user = bintray_user |
