TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Oct 2017 |
Maintained by Jenkins Phunware, Xiangwei Wang, Shashank Thummalapalli, Patrick Dunshee, Rongbo Yang, Chesley Stephens.
Version 1.1.6.1
Integrate with Phunware Beta SDKs for iOS with one line, or specify the SDKs you want to integrate with as you want.
We recommend using CocoaPods, and add the following to your Podfile.
pod 'Phunware/Beta' # Pull in all SDKs
If you don't want to use all of SDKs, there are multiple subspecs which can selectively install subsets of the SDK:
# Only pull in PWCore SDK
pod 'Phunware/Beta/Core'
# Only pull in PWLocation SDK, the `PWCore` is automatically pulled in as a dependency
pod 'Phunware/Beta/Location'
# Only pull in PWMapKit SDK, the `PWCore` and `PWLocation` are automatically pulled in as dependencies
pod 'Phunware/Beta/MapKit'
# Only pull in PWMessaging SDK, the `PWCore` is automatically pulled in as a dependency
pod 'Phunware/Beta/Messaging'
# Only pull in PWAds SDK, the `PWCore` is automatically pulled in as a dependency
pod 'Phunware/Beta/Ads'
http://phunware.github.io/maas-core-ios-sdk
First to import it with:
Objective-C
#import <PWCore/PWCore.h>
Swift
import PWCore
Then initialize it in the application:didFinishLaunchingWithOptions:
method with:
Objective-C
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// These values can be found for your application in the MaaS portal (http://maas.phunware.com/clients).
[PWCore setApplicationID:<#(NSString *)#> accessKey:<#(NSString *)#> signatureKey:<#(NSString *)#> encryptionKey:@""];
...
}
Swift
func application(_ application: UIApplication, >didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// These values can be found for your application in the MaaS portal (http://maas.phunware.com/clients).
PWCore.setApplicationID(<#applicationID: String!#>, accessKey: <#String!#>, signatureKey: <#String!#>, encryptionKey: "")
...
}
http://phunware.github.io/maas-location-ios-sdk
Firstly, you have to make sure the PWCore
setup correctly.
Then, TBD
http://phunware.github.io/maas-location-ios-sdk
Firstly, you have to make sure the PWCore
setup correctly.
Then, TBD
http://phunware.github.io/maas-messaging-ios-sdk
Firstly, you have to make sure the PWCore
setup correctly.
Then, TBD
http://phunware.github.io/maas-ads-ios-sdk
Firstly, you have to make sure the PWCore
setup correctly.
Then, TBD
You understand and consent to Phunware’s Privacy Policy located at www.phunware.com/privacy. If your use of Phunware’s software requires a Privacy Policy of your own, you also agree to include the terms of Phunware’s Privacy Policy in your Privacy Policy to your end users.