diff options
author | fredrossperry <fredrossperry@gmail.com> | 2015-12-15 16:52:41 -0800 |
---|---|---|
committer | fredrossperry <fredrossperry@gmail.com> | 2015-12-15 17:30:31 -0800 |
commit | 15ce2165cc01dabc5a670407e00a0b704da0ee2f (patch) | |
tree | 41f1b615012473e4a20c2e997560e11d87f0d12e /platform/ios/Classes | |
parent | a093a75e3b7107f33a21398013fd085aa29e1bb0 (diff) | |
download | mupdf-15ce2165cc01dabc5a670407e00a0b704da0ee2f.tar.xz |
muPDF iOS app: Support for the latest (3.4.1) Crashlytics.
- added four zlib files to Makethird that contain functions needed
by the new version.
- added -Wno-implicit-function-declaration so these new files, which
contain some implicit declarations, would build for iOS
- added a section to Info.plist that holds the new API key, with an
invalid value that the release build script will fill in.
- changes to MuAppDelegate for the new version.
<log></log>
Diffstat (limited to 'platform/ios/Classes')
-rw-r--r-- | platform/ios/Classes/MuAppDelegate.m | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/ios/Classes/MuAppDelegate.m b/platform/ios/Classes/MuAppDelegate.m index b3ff1481..5751cb1e 100644 --- a/platform/ios/Classes/MuAppDelegate.m +++ b/platform/ios/Classes/MuAppDelegate.m @@ -4,6 +4,7 @@ #import "MuAppDelegate.h" #ifdef CRASHLYTICS_ENABLE +#import <Fabric/Fabric.h> #import <Crashlytics/Crashlytics.h> #endif @@ -29,7 +30,7 @@ #ifdef CRASHLYTICS_ENABLE NSLog(@"Starting Crashlytics"); - [Crashlytics startWithAPIKey:CRASHLYTICS_API_KEY]; + [Fabric with:@[[Crashlytics class]]]; #endif screenScale = [[UIScreen mainScreen] scale]; |