Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
  • Loading branch information
jgimenez committed Nov 10, 2015
1 parent 3dda261 commit 9dfb493
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
Binary file modified BugfenderSDK.framework/BugfenderSDK
Binary file not shown.
8 changes: 8 additions & 0 deletions BugfenderSDK.framework/Headers/BugfenderSDK.h
Expand Up @@ -100,6 +100,8 @@ FOUNDATION_EXPORT void __BFLog(NSInteger lineNumber, NSString *method, NSString
* Activates the Bugfender for a specific app.
* @param appToken The app token of the Bugfender application
* @discussion This method needs to be called before any BFLog call, otherwise the `BFInvalidMethodCallException` exception will be thrown.
* @throws `NSInvalidArgumentException` if Bugfender has already been initialized
with a different app token.
**/
+ (void)activateLogger:(NSString*)appToken;

Expand All @@ -110,6 +112,12 @@ FOUNDATION_EXPORT void __BFLog(NSInteger lineNumber, NSString *method, NSString
**/
+ (void)enableAllWithToken:(NSString*)appToken;

/**
* Returns the app token.
* @returns The app token, or nil if Bugfender has not been initialized.
**/
+ (NSString*)token;

/**
* Maximum space availalbe to store local logs. This value is represented in bytes. Default value is 5242880 (1024*1024*5 = 5MB).
* @discussion If maximumLocalStorageSize is 0 (zero), then there is no limit and everything will be stored locally.
Expand Down
4 changes: 2 additions & 2 deletions BugfenderSDK.podspec.json
@@ -1,6 +1,6 @@
{
"name": "BugfenderSDK",
"version": "0.3.16",
"version": "0.3.17",
"summary": "Bugfender: a mobile remote logger",
"description": "A modern remote logger tailor-made for mobile development.",
"homepage": "http://bugfender.com",
Expand All @@ -17,7 +17,7 @@
},
"source": {
"git": "https://github.com/bugfender/BugfenderSDK-iOS.git",
"tag": "0.3.16"
"tag": "0.3.17"
},
"ios": {
"vendored_frameworks": "BugfenderSDK.framework",
Expand Down

0 comments on commit 9dfb493

Please sign in to comment.