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

Commit f933267

Browse files
committed
Update version for release
1 parent e134d7b commit f933267

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

+7-7
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.1
4+
## Version 4.1.2
55

66
## Introduction
77

@@ -75,7 +75,7 @@ Please see the "[How to create a new app](http://support.hockeyapp.net/kb/about-
7575
Add the SDK to your app module's dependencies in Android Studio by adding the following line to your `dependencies { ... }` configuration:
7676

7777
```groovy
78-
compile 'net.hockeyapp.android:HockeySDK:4.1.1'
78+
compile 'net.hockeyapp.android:HockeySDK:4.1.2'
7979
```
8080

8181
<a id="integrate-sdk"></a>
@@ -314,7 +314,7 @@ If you don't want to use Gradle or Maven dependency management you can also down
314314
4. Configure your development tools to use the .aar/.jar file.
315315
5. In Android Studio, create a new module via `File > New > New Module`
316316
6. Select **Import .JAR/.AAR Package** and click **Next**.
317-
7. In the next menu select the .aar/.jar file you just copied to the libs folder. You can rename the module to whatever you want, but we in general recommend leaving it as is. If you don't rename the module, it will match the name of the .aar/.jar file, in this case **HockeySDK-4.1.1**. This way you'll quickly know which version of the SDK you are using in the future.
317+
7. In the next menu select the .aar/.jar file you just copied to the libs folder. You can rename the module to whatever you want, but we in general recommend leaving it as is. If you don't rename the module, it will match the name of the .aar/.jar file, in this case **HockeySDK-4.1.2**. This way you'll quickly know which version of the SDK you are using in the future.
318318
8. Make sure Android Studio added the necessary code to integrate the HockeySDK:
319319

320320
Head over to your app's `build.gradle` to verify the dependency was added correctly. It should look like this:
@@ -324,19 +324,19 @@ dependencies {
324324
//your other dependencies
325325
//...
326326
327-
compile project(':HockeySDK-4.1.1')
327+
compile project(':HockeySDK-4.1.2')
328328
}
329329
```
330330
Next, make sure your `settings.gradle` contains the new module:
331331

332332
```groovy
333-
include ':app', ':HockeySDK-4.1.1'
333+
include ':app', ':HockeySDK-4.1.2'
334334
```
335335

336336
Finally, check the `build.gradle` of the newly added module:
337337
```groovy
338338
configurations.maybeCreate("default")
339-
artifacts.add("default", file('HockeySDK-4.1.1.aar'))
339+
artifacts.add("default", file('HockeySDK-4.1.2.aar'))
340340
```
341341

342342
Once you have verified that everything necessary has been added, proceed with [SDK integration](#integrate-sdk).
@@ -527,7 +527,7 @@ However, if you provide a custom user interface fragment for the update distribu
527527
<a id="documentation"></a>
528528
## 5. Documentation
529529

530-
Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/android/4.1.1/index.html).
530+
Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/android/4.1.2/index.html).
531531

532532
<a id="troubleshooting"></a>
533533
## 6.Troubleshooting

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ allprojects {
3535

3636
ext {
3737
ARTIFACT_ID = 'HockeySDK'
38-
VERSION_NAME = '4.1.1'
38+
VERSION_NAME = '4.1.2'
3939
VERSION_CODE = 10
4040
SITE_URL = 'https://github.com/bitstadium/hockeysdk-android'
4141
GIT_URL = 'https://github.com/bitstadium/HockeySDK-Android.git'

0 commit comments

Comments
 (0)