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 #76 from bitstadium/release/2.2.4
Browse files Browse the repository at this point in the history
Release/2.2.4
  • Loading branch information
Benjamin Scholtysik (Reimold) committed May 4, 2017
2 parents 4ed99e0 + 5f64eaa commit 1cdaa7b
Show file tree
Hide file tree
Showing 22 changed files with 28 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
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-4.1.3.aar" target="libs/HockeySDK-4.1.3.aar" />
<resource-file src="src/android/HockeySDK-Android/HockeySDK-4.1.4.aar" target="libs/HockeySDK-4.1.4.aar" />
</platform>

<platform name="ios">
Expand Down
Binary file removed src/android/HockeySDK-Android/HockeySDK-4.1.3.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-4.1.3", ext: "aar")
compile(name:"HockeySDK-4.1.4", ext: "aar")
}
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,18 @@ NS_ASSUME_NONNULL_BEGIN
*/
- (void)startManager;

/**
Starts the manager and runs all modules from a Xamarin environment. This is intended to be used by the HockeySDK-Xamarin.
We now need to make a difference as BITCrashManager needs to setup PLCrashReporter differently for Xamarin apps.
@warning Do not use this API from within a native iOS app.
Call this after configuring the manager and setting up all modules.
@see configureWithIdentifier:delegate:
@see configureWithBetaIdentifier:liveIdentifier:delegate:
*/
- (void)startManagerInXamarinEnvironment;

#pragma mark - Public Properties

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,4 +184,18 @@ typedef NS_ENUM(NSInteger, BITHockeyErrorReason) {
BITHockeyErrorUnknown
};

/**
* SDK Environment
*/
typedef NS_ENUM (NSUInteger, BITSdkEnvironment) {
/**
* A regular native iOS environment
*/
BITSdkEnvironmentNative = 0,
/**
* A xamarin environment
*/
BITSdkEnvironmentXamarin = 1
};

#endif /* HockeySDK_HockeyEnums_h */
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 1cdaa7b

Please sign in to comment.