Skip to content
This repository was archived by the owner on Feb 19, 2020. It is now read-only.

Commit 6c969b9

Browse files
author
Benjamin Scholtysik (Reimold)
authored
Merge pull request #276 from bitstadium/release/5.0.0-beta.1
Release/5.0.0 beta.1
2 parents 1e7bbaa + 27b24ee commit 6c969b9

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ android:
1414
- platform-tools
1515

1616
# Use the desired build tools
17-
- build-tools-26.0.0
17+
- build-tools-26.0.1
1818

1919
# Project target SDK
2020
- android-26

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Build Status](https://travis-ci.org/bitstadium/HockeySDK-Android.svg?branch=develop)](https://travis-ci.org/bitstadium/HockeySDK-Android)
22
[![Slack Status](https://slack.hockeyapp.net/badge.svg)](https://slack.hockeyapp.net)
33

4-
## Version 4.1.5
4+
## Version 5.0.0-beta.1
55

66
HockeySDK-Android implements support for using HockeyApp in your Android applications.
77

@@ -15,7 +15,7 @@ The following features are currently supported:
1515

1616
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.
1717

18-
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.
18+
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.
1919

2020

2121
## 1. Setup
@@ -26,7 +26,7 @@ It is super easy to use HockeyApp in your Android app. Have a look at our [docum
2626

2727
Please visit [our landing page](https://support.hockeyapp.net/kb/client-integration-android) as a starting point for all of our documentation.
2828

29-
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).
29+
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).
3030

3131
## 3. Contributing
3232

build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ allprojects {
3535

3636
ext {
3737
ARTIFACT_ID = 'HockeySDK'
38-
VERSION_NAME = '4.1.5'
39-
VERSION_CODE = 12
38+
VERSION_NAME = '5.0.0-beta.1'
39+
VERSION_CODE = 13
4040
SITE_URL = 'https://github.com/bitstadium/hockeysdk-android'
4141
GIT_URL = 'https://github.com/bitstadium/HockeySDK-Android.git'
4242
BINTRAY_USER = HOCKEYAPP_BINTRAY_USER
4343
GROUP_NAME = 'net.hockeyapp.android'
4444
COMPILE_SDK = 26
45-
BUILD_TOOLS = '26.0.0'
45+
BUILD_TOOLS = '26.0.1'
4646
IS_UPLOADING = project.getGradle().startParameter.taskNames.any{it.contains('bintrayUpload')}
4747
DESCRIPTION = 'HockeySDK-Android implements support for using HockeyApp in your Android application. The following features are currently supported:\n' +
4848
'\n' +
@@ -54,7 +54,7 @@ ext {
5454
'\n' +
5555
'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' +
5656
'\n' +
57-
'Authenticate: Identify and authenticate users against your registered testers with the HockeyApp backend. The authentication feature supports several ways of authentication.'
57+
'Authenticate: Identify and authenticate users against your registered testers with the HockeyApp backend.'
5858
}
5959

6060
subprojects {
@@ -67,7 +67,7 @@ subprojects {
6767

6868
gradle.taskGraph.whenReady { taskGraph ->
6969
taskGraph.getAllTasks().find {
70-
it.path == ":$project.name:generatePomFileForMavenPublication"
70+
it.path == ":$project.name:publishReleasePublicationToMavenLocal"
7171
}.doLast {
7272
file("build/publications/maven/pom-default.xml").delete()
7373
println 'Overriding pom-file to make sure we can sync to maven central!'

0 commit comments

Comments
 (0)