diff options
Diffstat (limited to 'platform/ios')
-rw-r--r-- | platform/ios/Classes/MuAppDelegate.m | 3 | ||||
-rw-r--r-- | platform/ios/Info.plist | 14 | ||||
-rw-r--r-- | platform/ios/build_libs.sh | 2 |
3 files changed, 17 insertions, 2 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]; diff --git a/platform/ios/Info.plist b/platform/ios/Info.plist index 757fc8a7..d310b312 100644 --- a/platform/ios/Info.plist +++ b/platform/ios/Info.plist @@ -81,6 +81,20 @@ <string>????</string> <key>CFBundleVersion</key> <string>1.8</string> + <key>Fabric</key> + <dict> + <key>APIKey</key> + <string>invalid key</string> + <key>Kits</key> + <array> + <dict> + <key>KitInfo</key> + <dict/> + <key>KitName</key> + <string>Crashlytics</string> + </dict> + </array> + </dict> <key>LSRequiresIPhoneOS</key> <true/> <key>UIFileSharingEnabled</key> diff --git a/platform/ios/build_libs.sh b/platform/ios/build_libs.sh index cae76750..0d280b58 100644 --- a/platform/ios/build_libs.sh +++ b/platform/ios/build_libs.sh @@ -14,7 +14,7 @@ fi export OS=ios export build=$(echo $CONFIGURATION | tr A-Z a-z) -FLAGS="-Wno-unused-function -Wno-empty-body" +FLAGS="-Wno-unused-function -Wno-empty-body -Wno-implicit-function-declaration" for A in $ARCHS do FLAGS="$FLAGS -arch $A" |