AirWatch Developer Guide for Native iOS

 

App Configuration > AirWatch SDK (Native iOS)


Overview

The steps in this tutorial are done with the assumption that you have gone through the steps in General Setup tutorial as well as the SDK Setup section.

Important: You will need to download the SDK binary separately via resources.air-watch.com. Please contact your AirWatch representative or support to gain access.

Requirements

  • iOS 7+
  • Xcode
  • iOS Test Device
  • AirWatch SDK from AirWatch Resource Portal

Tutorial

Step 1: Integrate the AirWatch SDK

Follow the instructions to integrate the AirWatch Software Development Kit (SDK) for iOS into your application.

Step 2: Add Custom Settings in your SDK profile

For this next part, you will need to check which profile you have assigned to your SDK app. You can do this by navigating to Apps & Books > Details View. Click Edit. Choose More > SDK. Check what profile is assigned for SDK Profile.

5-ios_assign_profile

Using the Default SDK Profile (Recommended)

  1. If the profile assigned is the default profile, then the policy settings can be edited by navigating to Apps & Books > All Apps & Books Settings > Apps > Settings And Policies > Settings.
  2. Enable the custom settings and add your custom settings. This is a string field and can contain XML, JSON, or plain text. You can also insert lookup values if desired. 7-defaultprofilecustomsettings
  3. Once you are done, click save to start enforcing the new policy.

Using a custom profile

  1. In the *AirWatch Console, Choose Apps & Books > All Apps & Books Settings.
  2. Choose Settings and Policies > Profiles and click Add Profile to create a custom profile or edit an already existing profile currently assigned to your app.1-settings_add_profile
  3. You will be asked to Choose SDK Profile or Application Profile. Select the SDK profile.
  4. Choose iOS and fill in the Name field on the General Tab.3-ios-general
  5. Click Custom Settings on the left, and add your custom settings. This is a string field and can contain XML, JSON, or plain text. You can also insert lookup values if desired. 4-ios_profile_custom_payload
  6. Save the Profile.

Step 3: Retrieving the Profile within Your Application

The code to retrieve these settings within the app is very simple if SDK integration is already done from Step 1:

- (void) receivedProfiles: (NSArray *) profiles {
NSLog(@"Profiles received");

AWCustomPayload *custom = [[profiles firstObject] customPayload];
NSString *customSettings = custom.settings;
...
}

Here is a screenshot from the debugger showing the sample XML settings entered in the AirWatch Console above:

6-ios_SDK_received_custom_profile

Use these settings however you wish in your app!

 

Edit Add

Comments

Add Comment
Pelin Alp
This works http post and get requests with no problem. But my app has webviews. Webviews don't open with tunneling. How to work tunnel on the webview? What should I do for tunnel in webview?
Posted on 1/26/23 12:04 AM.