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

Commit

Permalink
Update version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaswenz committed Dec 8, 2016
1 parent e134d7b commit f933267
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.1
## Version 4.1.2

## Introduction

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

```groovy
compile 'net.hockeyapp.android:HockeySDK:4.1.1'
compile 'net.hockeyapp.android:HockeySDK:4.1.2'
```

<a id="integrate-sdk"></a>
Expand Down Expand Up @@ -314,7 +314,7 @@ If you don't want to use Gradle or Maven dependency management you can also down
4. Configure your development tools to use the .aar/.jar file.
5. In Android Studio, create a new module via `File > New > New Module`
6. Select **Import .JAR/.AAR Package** and click **Next**.
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.
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.
8. Make sure Android Studio added the necessary code to integrate the HockeySDK:

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

```groovy
include ':app', ':HockeySDK-4.1.1'
include ':app', ':HockeySDK-4.1.2'
```

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

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

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

<a id="troubleshooting"></a>
## 6.Troubleshooting
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ allprojects {

ext {
ARTIFACT_ID = 'HockeySDK'
VERSION_NAME = '4.1.1'
VERSION_NAME = '4.1.2'
VERSION_CODE = 10
SITE_URL = 'https://github.com/bitstadium/hockeysdk-android'
GIT_URL = 'https://github.com/bitstadium/HockeySDK-Android.git'
Expand Down

0 comments on commit f933267

Please sign in to comment.