You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 19, 2020. It is now read-only.
@@ -75,7 +75,7 @@ Please see the "[How to create a new app](http://support.hockeyapp.net/kb/about-
75
75
Add the SDK to your app module's dependencies in Android Studio by adding the following line to your `dependencies { ... }` configuration:
76
76
77
77
```groovy
78
-
compile 'net.hockeyapp.android:HockeySDK:4.1.1'
78
+
compile 'net.hockeyapp.android:HockeySDK:4.1.2'
79
79
```
80
80
81
81
<aid="integrate-sdk"></a>
@@ -314,7 +314,7 @@ If you don't want to use Gradle or Maven dependency management you can also down
314
314
4. Configure your development tools to use the .aar/.jar file.
315
315
5. In Android Studio, create a new module via `File > New > New Module`
316
316
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.
318
318
8. Make sure Android Studio added the necessary code to integrate the HockeySDK:
319
319
320
320
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 {
324
324
//your other dependencies
325
325
//...
326
326
327
-
compile project(':HockeySDK-4.1.1')
327
+
compile project(':HockeySDK-4.1.2')
328
328
}
329
329
```
330
330
Next, make sure your `settings.gradle` contains the new module:
331
331
332
332
```groovy
333
-
include ':app', ':HockeySDK-4.1.1'
333
+
include ':app', ':HockeySDK-4.1.2'
334
334
```
335
335
336
336
Finally, check the `build.gradle` of the newly added module:
0 commit comments