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

Commit

Permalink
Merge pull request #91 from bitstadium/release/5.1.0
Browse files Browse the repository at this point in the history
Release/5.1.0
  • Loading branch information
Benjamin Scholtysik (Reimold) authored Dec 13, 2017
2 parents 15870ea + ef79d82 commit 946fc74
Show file tree
Hide file tree
Showing 11 changed files with 9 additions and 10 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-hockeyapp",
"version": "5.0.1",
"version": "5.1.0",
"description": "Cordova plugin for HockeyApp",
"cordova": {
"id": "cordova-plugin-hockeyapp",
Expand Down Expand Up @@ -29,7 +29,7 @@
"cordova-android",
"cordova-ios"
],
"author": "Paul Panserrieu <paul@42loops.com>",
"author": "Microsoft <appcentersdk@microsoft.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bitstadium/HockeySDK-Cordova/issues"
Expand Down
7 changes: 3 additions & 4 deletions plugin.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin id="cordova-plugin-hockeyapp" version="5.0.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<plugin id="cordova-plugin-hockeyapp" version="5.1.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>HockeyApp</name>
<description>Cordova plugin for HockeyApp</description>
<license>Apache 2.0</license>
<keywords>cordova,hockeyapp</keywords>
<author>Paul Panserrieu</author>
<author>Microsoft</author>
<repo>https://github.com/bitstadium/HockeySDK-Cordova</repo>
<issue>https://github.com/bitstadium/HockeySDK-Cordova/issues</issue>

Expand Down Expand Up @@ -40,7 +40,7 @@

<framework src="src/android/build.gradle" custom="true" type="gradleReference" />
<source-file src="src/android/HockeyApp.java" target-dir="src/com/zengularity/cordova/hockeyapp" />
<resource-file src="src/android/HockeySDK-Android/HockeySDK-5.0.2.aar" target="libs/HockeySDK-5.0.2.aar" />
<resource-file src="src/android/HockeySDK-Android/HockeySDK-5.0.4.aar" target="libs/HockeySDK-5.0.4.aar" />
</platform>

<platform name="ios">
Expand All @@ -59,7 +59,6 @@
<framework src="libstdc++.dylib" />
<framework src="libc++.dylib" />
<framework src="libz.tbd" />
<framework src="AssetsLibrary.framework" />
<framework src="CoreText.framework" />
<framework src="CoreTelephony.framework" />
<framework src="CoreGraphics.framework" />
Expand Down
2 changes: 1 addition & 1 deletion src/android/HockeyApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public boolean execute(String action, JSONArray args, CallbackContext callbackCo
UpdateManager.register(cordova.getActivity(), appId);
}

MetricsManager.register(cordova.getActivity(), cordova.getActivity().getApplication(), appId);
MetricsManager.register(cordova.getActivity().getApplication(), appId);
CrashManager.register(cordova.getActivity(), appId, this.crashListener);

// Verify the user
Expand Down
Binary file removed src/android/HockeySDK-Android/HockeySDK-5.0.2.aar
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion src/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ repositories {
}

dependencies {
compile(name:"HockeySDK-5.0.2", ext: "aar")
compile(name:"HockeySDK-5.0.4", ext: "aar")
}
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ typedef NS_ENUM(NSInteger, BITFeedbackObservationMode) {
own trigger and then call `[[BITHockeyManager sharedHockeyManager].feedbackManager showFeedbackComposeViewWithGeneratedScreenshot];` to handle your custom events
that should trigger this.
- `BITFeedbackObservationModeOnScreenshot`: Triggers when the user takes a screenshot.
This will grab the latest image from the camera roll. Requires iOS 7 or later! It also requires to add a NSPhotoLibraryUsageDescription to your app's Info.plist.
This will grab the latest image from the camera roll. It also requires to add a NSPhotoLibraryUsageDescription to your app's Info.plist.
- `BITFeedbackObservationModeThreeFingerTap`: Triggers when the user taps on the screen with three fingers. Takes a screenshot and attaches it to the composer. It also requires to add a NSPhotoLibraryUsageDescription to your app's Info.plist.
Default is `BITFeedbackObservationNone`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ NS_ASSUME_NONNULL_BEGIN
This is not identical to the `[ASIdentifierManager advertisingIdentifier]` or
the `[UIDevice identifierForVendor]`!
*/
@property (nonatomic, readonly) NSString *installString;
@property (nonatomic, readonly, copy) NSString *installString;


/**
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 946fc74

Please sign in to comment.