diff options
| -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 |
