summaryrefslogtreecommitdiff
path: root/platform/ios/vendor/Fabric/Fabric+FABKits.h
diff options
context:
space:
mode:
authorJason Wray <friedbunny@users.noreply.github.com>2018-06-18 19:03:59 -0700
committerJulian Rex <julian.rex@mapbox.com>2018-06-18 22:39:39 -0400
commit4343ab936c833772f55873ac88b52ead45efe011 (patch)
tree65892a8070d68a4c166a4f8162bda1a833c0d031 /platform/ios/vendor/Fabric/Fabric+FABKits.h
parentfba8fd7d649e7384b926ec19e9887eaa5f9a093a (diff)
downloadqtlocation-mapboxgl-upstream/jrex-cp-12106.tar.gz
[ios, build] Completely remove support for Fabric (#12106)upstream/jrex-cp-12106
Diffstat (limited to 'platform/ios/vendor/Fabric/Fabric+FABKits.h')
-rw-r--r--platform/ios/vendor/Fabric/Fabric+FABKits.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/platform/ios/vendor/Fabric/Fabric+FABKits.h b/platform/ios/vendor/Fabric/Fabric+FABKits.h
deleted file mode 100644
index bb576ab061..0000000000
--- a/platform/ios/vendor/Fabric/Fabric+FABKits.h
+++ /dev/null
@@ -1,25 +0,0 @@
-//
-// Fabric+FABKits.h
-//
-// Copyright (c) 2015 Twitter. All rights reserved.
-//
-
-#import "Fabric.h"
-
-@protocol FABKit;
-// Use this category for methods that kits can call on Fabric.
-@interface Fabric (FABKits)
-
-/**
- * Returns a dictionary containing the kit configuration info for the provided kit.
- * The configuration information is parsed from the application's Info.plist. This
- * method is primarily intended to be used by kits to retrieve their configuration.
- *
- * @param kitClass The class of the kit whose configuration should be returned.
- * It should conform to the FABKit protocol.
- *
- * @return A dictionary containing kit specific configuration information or nil if none exists.
- */
-+ (fab_nonnull NSDictionary *)configurationDictionaryForKitClass:(fab_nonnull Class)kitClass;
-
-@end