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.
HockeySDK-Android implements support for using HockeyApp in your Android application.
9
9
10
10
The following features are currently supported:
11
11
12
-
1.**Crash Reports:** If your app crashes, a crash log is written to the device's storage. If the user starts the app again, they will be asked asked to submit the crash report to HockeyApp. This works for both beta and live apps, i.e. those submitted to Google Play or other app stores. Crash logs contain viable information for you to help resolve the issue. Furthermore, you as a developer can add additional information to the report as well.
12
+
1.**Crash Reports:** If your app crashes, a crash log is written to the device's storage. If the user starts the app again, they will be asked to submit the crash report to HockeyApp. This works for both beta and live apps, i.e. those submitted to Google Play or other app stores. Crash logs contain viable information for you to help resolve the issue. Furthermore, you as a developer can add additional information to the report as well.
13
13
14
14
2.**User Metrics:** Understand user behavior to improve your app. Track usage through daily and monthly active users, monitor crash impacted users, as well as customer engagement through session count. User Metrics requires a minimum API level of 14 (Android 4.x Ice Cream Sandwich).
15
15
@@ -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>
@@ -231,7 +231,7 @@ This will add the ability for your users to provide feedback from right inside y
231
231
```java
232
232
importnet.hockeyapp.android.FeedbackManager;
233
233
234
-
publicclassYourActivityextendsActivitiy {
234
+
publicclassYourActivityextendsActivity {
235
235
236
236
@Override
237
237
publicvoidonCreate(BundlesavedInstanceState) {
@@ -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