diff --git a/.travis.yml b/.travis.yml index ad467663d..b0dc24e35 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ android: - platform-tools # Use the desired build tools - - build-tools-26.0.0 + - build-tools-26.0.1 # Project target SDK - android-26 diff --git a/README.md b/README.md index 4de3e511b..57f39a12e 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ [![Build Status](https://travis-ci.org/bitstadium/HockeySDK-Android.svg?branch=develop)](https://travis-ci.org/bitstadium/HockeySDK-Android) [![Slack Status](https://slack.hockeyapp.net/badge.svg)](https://slack.hockeyapp.net) -## Version 4.1.5 +## Version 5.0.0-beta.1 HockeySDK-Android implements support for using HockeyApp in your Android applications. @@ -15,7 +15,7 @@ The following features are currently supported: 4. **Feedback:** Besides crash reports, collecting feedback from your users from within your app is a great option to help with improving your app. You act on and answer feedback directly from the HockeyApp backend. -5. **Authenticate:** To help you stay in control of closed tester groups you can identify and authenticate users against your registered testers with the HockeyApp backend. The authentication feature supports several ways of authentication. +5. **Authenticate:** To help you stay in control of closed tester groups you can identify and authenticate users against your registered testers with the HockeyApp backend. ## 1. Setup @@ -26,7 +26,7 @@ It is super easy to use HockeyApp in your Android app. Have a look at our [docum Please visit [our landing page](https://support.hockeyapp.net/kb/client-integration-android) as a starting point for all of our documentation. -Please check out our [getting started documentation](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk), [changelog](https://github.com/bitstadium/HockeySDK-Android/releases/tag/4.1.5), [java doc](https://www.hockeyapp.net/help/sdk/android/4.1.5/index.html) as well as our [troubleshooting section](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk#troubleshooting). +Please check out our [getting started documentation](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk), [change log](https://github.com/bitstadium/HockeySDK-Android/releases/tag/5.0.0-beta.1), [java doc](https://www.hockeyapp.net/help/sdk/android/5.0.0-beta.1/index.html) as well as our [troubleshooting section](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk#troubleshooting). ## 3. Contributing diff --git a/build.gradle b/build.gradle index 6fa484cc4..7ed84ef01 100644 --- a/build.gradle +++ b/build.gradle @@ -35,14 +35,14 @@ allprojects { ext { ARTIFACT_ID = 'HockeySDK' - VERSION_NAME = '4.1.5' - VERSION_CODE = 12 + VERSION_NAME = '5.0.0-beta.1' + VERSION_CODE = 13 SITE_URL = 'https://github.com/bitstadium/hockeysdk-android' GIT_URL = 'https://github.com/bitstadium/HockeySDK-Android.git' BINTRAY_USER = HOCKEYAPP_BINTRAY_USER GROUP_NAME = 'net.hockeyapp.android' COMPILE_SDK = 26 - BUILD_TOOLS = '26.0.0' + BUILD_TOOLS = '26.0.1' IS_UPLOADING = project.getGradle().startParameter.taskNames.any{it.contains('bintrayUpload')} DESCRIPTION = 'HockeySDK-Android implements support for using HockeyApp in your Android application. The following features are currently supported:\n' + '\n' + @@ -54,7 +54,7 @@ ext { '\n' + 'Feedback: Besides crash reports, collecting feedback from your users from within your app is a great option to help with improving your app. You act on and answer feedback directly from the HockeyApp backend.\n' + '\n' + - 'Authenticate: Identify and authenticate users against your registered testers with the HockeyApp backend. The authentication feature supports several ways of authentication.' + 'Authenticate: Identify and authenticate users against your registered testers with the HockeyApp backend.' } subprojects { @@ -67,7 +67,7 @@ subprojects { gradle.taskGraph.whenReady { taskGraph -> taskGraph.getAllTasks().find { - it.path == ":$project.name:generatePomFileForMavenPublication" + it.path == ":$project.name:publishReleasePublicationToMavenLocal" }.doLast { file("build/publications/maven/pom-default.xml").delete() println 'Overriding pom-file to make sure we can sync to maven central!'