Chilkat Online Tools

GetDevicePoolCompatibility Android Example

AWS Device Farm

// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;

import android.app.Activity;
import com.chilkatsoft.*;

import android.widget.TextView;
import android.os.Bundle;

public class SimpleActivity extends Activity {

  private static final String TAG = "Chilkat";

  // Called when the activity is first created.
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // This example requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    CkRest rest = new CkRest();
    boolean success;

    CkAuthAws authAws = new CkAuthAws();
    authAws.put_AccessKey("AWS_ACCESS_KEY");
    authAws.put_SecretKey("AWS_SECRET_KEY");

    // Don't forget to change the region to your particular region. (Also make the same change in the call to Connect below.)
    authAws.put_Region("us-west-2");
    authAws.put_ServiceName("devicefarm");
    // SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    rest.SetAuthAws(authAws);

    // URL: https://devicefarm.us-west-2.amazonaws.com/
    // Use the same region as specified above.
    success = rest.Connect("devicefarm.us-west-2.amazonaws.com",443,true,true);
    if (success != true) {
        Log.i(TAG, "ConnectFailReason: " + String.valueOf(rest.get_ConnectFailReason()));
        Log.i(TAG, rest.lastErrorText());
        return;
        }

    // The following code creates the JSON request body.
    // The JSON created by this code is shown below.

    // Use this online tool to generate code from sample JSON:
    // Generate Code to Create JSON

    CkJsonObject json = new CkJsonObject();
    json.UpdateString("appArn","string");
    json.UpdateString("configuration.auxiliaryApps[0]","string");
    json.UpdateString("configuration.billingMethod","string");
    json.UpdateString("configuration.customerArtifactPaths.androidPaths[0]","string");
    json.UpdateString("configuration.customerArtifactPaths.deviceHostPaths[0]","string");
    json.UpdateString("configuration.customerArtifactPaths.iosPaths[0]","string");
    json.UpdateString("configuration.extraDataPackageArn","string");
    json.UpdateString("configuration.locale","string");
    json.UpdateInt("configuration.location.latitude",123);
    json.UpdateInt("configuration.location.longitude",123);
    json.UpdateString("configuration.networkProfileArn","string");
    json.UpdateInt("configuration.radios.bluetooth",123);
    json.UpdateInt("configuration.radios.gps",123);
    json.UpdateInt("configuration.radios.nfc",123);
    json.UpdateInt("configuration.radios.wifi",123);
    json.UpdateString("configuration.vpceConfigurationArns[0]","string");
    json.UpdateString("devicePoolArn","string");
    json.UpdateString("test.filter","string");
    json.UpdateString("test.parameters.string","string");
    json.UpdateString("test.testPackageArn","string");
    json.UpdateString("test.testSpecArn","string");
    json.UpdateString("test.type","string");
    json.UpdateString("testType","string");

    // The JSON request body created by the above code:

    // {
    //   "appArn": "string",
    //   "configuration": {
    //     "auxiliaryApps": [
    //       "string"
    //     ],
    //     "billingMethod": "string",
    //     "customerArtifactPaths": {
    //       "androidPaths": [
    //         "string"
    //       ],
    //       "deviceHostPaths": [
    //         "string"
    //       ],
    //       "iosPaths": [
    //         "string"
    //       ]
    //     },
    //     "extraDataPackageArn": "string",
    //     "locale": "string",
    //     "location": {
    //       "latitude": number,
    //       "longitude": number
    //     },
    //     "networkProfileArn": "string",
    //     "radios": {
    //       "bluetooth": boolean,
    //       "gps": boolean,
    //       "nfc": boolean,
    //       "wifi": boolean
    //     },
    //     "vpceConfigurationArns": [
    //       "string"
    //     ]
    //   },
    //   "devicePoolArn": "string",
    //   "test": {
    //     "filter": "string",
    //     "parameters": {
    //       "string": "string"
    //     },
    //     "testPackageArn": "string",
    //     "testSpecArn": "string",
    //     "type": "string"
    //   },
    //   "testType": "string"
    // }

    rest.AddHeader("Content-Type","application/x-amz-json-1.1");
    rest.AddHeader("X-Amz-Target","DeviceFarm_20150623.GetDevicePoolCompatibility");

    CkStringBuilder sbRequestBody = new CkStringBuilder();
    json.EmitSb(sbRequestBody);
    CkStringBuilder sbResponseBody = new CkStringBuilder();
    success = rest.FullRequestSb("POST","/",sbRequestBody,sbResponseBody);
    if (success != true) {
        Log.i(TAG, rest.lastErrorText());
        return;
        }

    int respStatusCode = rest.get_ResponseStatusCode();
    Log.i(TAG, "response status code = " + String.valueOf(respStatusCode));
    if (respStatusCode != 200) {
        Log.i(TAG, "Response Header:");
        Log.i(TAG, rest.responseHeader());
        Log.i(TAG, "Response Body:");
        Log.i(TAG, sbResponseBody.getAsString());
        return;
        }

    CkJsonObject jResp = new CkJsonObject();
    jResp.LoadSb(sbResponseBody);

    // The following code parses the JSON response.
    // A sample JSON response is shown below the sample code.

    // Use this online tool to generate parsing code from sample JSON:
    // Generate Parsing Code from JSON

    int compatible;
    String Arn;
    String Availability;
    String Carrier;
    String Architecture;
    int Clock;
    String Frequency;
    String FleetName;
    String FleetType;
    String FormFactor;
    int HeapSize;
    String Image;
    String Manufacturer;
    int Memory;
    String Model;
    String ModelId;
    String Name;
    String Os;
    String Platform;
    String Radio;
    int RemoteAccessEnabled;
    int RemoteDebugEnabled;
    int Height;
    int Width;
    int j;
    int count_j;
    String arn;
    String deviceArn;
    String instanceProfileArn;
    String Description;
    String instanceProfileName;
    int PackageCleanup;
    int RebootAfterUse;
    String status;
    String udid;
    int k;
    int count_k;
    String strVal;
    String message;
    String v_type;
    String deviceAvailability;
    String deviceCarrier;
    String CpuArchitecture;
    int CpuClock;
    String CpuFrequency;
    String deviceFleetName;
    String deviceFleetType;
    String deviceFormFactor;
    int deviceHeapSize;
    String deviceImage;
    String deviceManufacturer;
    int deviceMemory;
    String deviceModel;
    String deviceModelId;
    String deviceName;
    String deviceOs;
    String devicePlatform;
    String deviceRadio;
    int deviceRemoteAccessEnabled;
    int deviceRemoteDebugEnabled;
    int ResolutionHeight;
    int ResolutionWidth;
    String instanceProfileDescription;
    int instanceProfilePackageCleanup;
    int instanceProfileRebootAfterUse;

    int i = 0;
    int count_i = jResp.SizeOfArray("compatibleDevices");
    while (i < count_i) {
        jResp.put_I(i);
        compatible = jResp.IntOf("compatibleDevices[i].compatible");
        Arn = jResp.stringOf("compatibleDevices[i].device.arn");
        Availability = jResp.stringOf("compatibleDevices[i].device.availability");
        Carrier = jResp.stringOf("compatibleDevices[i].device.carrier");
        Architecture = jResp.stringOf("compatibleDevices[i].device.cpu.architecture");
        Clock = jResp.IntOf("compatibleDevices[i].device.cpu.clock");
        Frequency = jResp.stringOf("compatibleDevices[i].device.cpu.frequency");
        FleetName = jResp.stringOf("compatibleDevices[i].device.fleetName");
        FleetType = jResp.stringOf("compatibleDevices[i].device.fleetType");
        FormFactor = jResp.stringOf("compatibleDevices[i].device.formFactor");
        HeapSize = jResp.IntOf("compatibleDevices[i].device.heapSize");
        Image = jResp.stringOf("compatibleDevices[i].device.image");
        Manufacturer = jResp.stringOf("compatibleDevices[i].device.manufacturer");
        Memory = jResp.IntOf("compatibleDevices[i].device.memory");
        Model = jResp.stringOf("compatibleDevices[i].device.model");
        ModelId = jResp.stringOf("compatibleDevices[i].device.modelId");
        Name = jResp.stringOf("compatibleDevices[i].device.name");
        Os = jResp.stringOf("compatibleDevices[i].device.os");
        Platform = jResp.stringOf("compatibleDevices[i].device.platform");
        Radio = jResp.stringOf("compatibleDevices[i].device.radio");
        RemoteAccessEnabled = jResp.IntOf("compatibleDevices[i].device.remoteAccessEnabled");
        RemoteDebugEnabled = jResp.IntOf("compatibleDevices[i].device.remoteDebugEnabled");
        Height = jResp.IntOf("compatibleDevices[i].device.resolution.height");
        Width = jResp.IntOf("compatibleDevices[i].device.resolution.width");
        j = 0;
        count_j = jResp.SizeOfArray("compatibleDevices[i].device.instances");
        while (j < count_j) {
            jResp.put_J(j);
            arn = jResp.stringOf("compatibleDevices[i].device.instances[j].arn");
            deviceArn = jResp.stringOf("compatibleDevices[i].device.instances[j].deviceArn");
            instanceProfileArn = jResp.stringOf("compatibleDevices[i].device.instances[j].instanceProfile.arn");
            Description = jResp.stringOf("compatibleDevices[i].device.instances[j].instanceProfile.description");
            instanceProfileName = jResp.stringOf("compatibleDevices[i].device.instances[j].instanceProfile.name");
            PackageCleanup = jResp.IntOf("compatibleDevices[i].device.instances[j].instanceProfile.packageCleanup");
            RebootAfterUse = jResp.IntOf("compatibleDevices[i].device.instances[j].instanceProfile.rebootAfterUse");
            status = jResp.stringOf("compatibleDevices[i].device.instances[j].status");
            udid = jResp.stringOf("compatibleDevices[i].device.instances[j].udid");
            k = 0;
            count_k = jResp.SizeOfArray("compatibleDevices[i].device.instances[j].instanceProfile.excludeAppPackagesFromCleanup");
            while (k < count_k) {
                jResp.put_K(k);
                strVal = jResp.stringOf("compatibleDevices[i].device.instances[j].instanceProfile.excludeAppPackagesFromCleanup[k]");
                k = k + 1;
                }

            k = 0;
            count_k = jResp.SizeOfArray("compatibleDevices[i].device.instances[j].labels");
            while (k < count_k) {
                jResp.put_K(k);
                strVal = jResp.stringOf("compatibleDevices[i].device.instances[j].labels[k]");
                k = k + 1;
                }

            j = j + 1;
            }

        j = 0;
        count_j = jResp.SizeOfArray("compatibleDevices[i].incompatibilityMessages");
        while (j < count_j) {
            jResp.put_J(j);
            message = jResp.stringOf("compatibleDevices[i].incompatibilityMessages[j].message");
            v_type = jResp.stringOf("compatibleDevices[i].incompatibilityMessages[j].type");
            j = j + 1;
            }

        i = i + 1;
        }

    i = 0;
    count_i = jResp.SizeOfArray("incompatibleDevices");
    while (i < count_i) {
        jResp.put_I(i);
        compatible = jResp.IntOf("incompatibleDevices[i].compatible");
        deviceArn = jResp.stringOf("incompatibleDevices[i].device.arn");
        deviceAvailability = jResp.stringOf("incompatibleDevices[i].device.availability");
        deviceCarrier = jResp.stringOf("incompatibleDevices[i].device.carrier");
        CpuArchitecture = jResp.stringOf("incompatibleDevices[i].device.cpu.architecture");
        CpuClock = jResp.IntOf("incompatibleDevices[i].device.cpu.clock");
        CpuFrequency = jResp.stringOf("incompatibleDevices[i].device.cpu.frequency");
        deviceFleetName = jResp.stringOf("incompatibleDevices[i].device.fleetName");
        deviceFleetType = jResp.stringOf("incompatibleDevices[i].device.fleetType");
        deviceFormFactor = jResp.stringOf("incompatibleDevices[i].device.formFactor");
        deviceHeapSize = jResp.IntOf("incompatibleDevices[i].device.heapSize");
        deviceImage = jResp.stringOf("incompatibleDevices[i].device.image");
        deviceManufacturer = jResp.stringOf("incompatibleDevices[i].device.manufacturer");
        deviceMemory = jResp.IntOf("incompatibleDevices[i].device.memory");
        deviceModel = jResp.stringOf("incompatibleDevices[i].device.model");
        deviceModelId = jResp.stringOf("incompatibleDevices[i].device.modelId");
        deviceName = jResp.stringOf("incompatibleDevices[i].device.name");
        deviceOs = jResp.stringOf("incompatibleDevices[i].device.os");
        devicePlatform = jResp.stringOf("incompatibleDevices[i].device.platform");
        deviceRadio = jResp.stringOf("incompatibleDevices[i].device.radio");
        deviceRemoteAccessEnabled = jResp.IntOf("incompatibleDevices[i].device.remoteAccessEnabled");
        deviceRemoteDebugEnabled = jResp.IntOf("incompatibleDevices[i].device.remoteDebugEnabled");
        ResolutionHeight = jResp.IntOf("incompatibleDevices[i].device.resolution.height");
        ResolutionWidth = jResp.IntOf("incompatibleDevices[i].device.resolution.width");
        j = 0;
        count_j = jResp.SizeOfArray("incompatibleDevices[i].device.instances");
        while (j < count_j) {
            jResp.put_J(j);
            arn = jResp.stringOf("incompatibleDevices[i].device.instances[j].arn");
            deviceArn = jResp.stringOf("incompatibleDevices[i].device.instances[j].deviceArn");
            instanceProfileArn = jResp.stringOf("incompatibleDevices[i].device.instances[j].instanceProfile.arn");
            instanceProfileDescription = jResp.stringOf("incompatibleDevices[i].device.instances[j].instanceProfile.description");
            instanceProfileName = jResp.stringOf("incompatibleDevices[i].device.instances[j].instanceProfile.name");
            instanceProfilePackageCleanup = jResp.IntOf("incompatibleDevices[i].device.instances[j].instanceProfile.packageCleanup");
            instanceProfileRebootAfterUse = jResp.IntOf("incompatibleDevices[i].device.instances[j].instanceProfile.rebootAfterUse");
            status = jResp.stringOf("incompatibleDevices[i].device.instances[j].status");
            udid = jResp.stringOf("incompatibleDevices[i].device.instances[j].udid");
            k = 0;
            count_k = jResp.SizeOfArray("incompatibleDevices[i].device.instances[j].instanceProfile.excludeAppPackagesFromCleanup");
            while (k < count_k) {
                jResp.put_K(k);
                strVal = jResp.stringOf("incompatibleDevices[i].device.instances[j].instanceProfile.excludeAppPackagesFromCleanup[k]");
                k = k + 1;
                }

            k = 0;
            count_k = jResp.SizeOfArray("incompatibleDevices[i].device.instances[j].labels");
            while (k < count_k) {
                jResp.put_K(k);
                strVal = jResp.stringOf("incompatibleDevices[i].device.instances[j].labels[k]");
                k = k + 1;
                }

            j = j + 1;
            }

        j = 0;
        count_j = jResp.SizeOfArray("incompatibleDevices[i].incompatibilityMessages");
        while (j < count_j) {
            jResp.put_J(j);
            message = jResp.stringOf("incompatibleDevices[i].incompatibilityMessages[j].message");
            v_type = jResp.stringOf("incompatibleDevices[i].incompatibilityMessages[j].type");
            j = j + 1;
            }

        i = i + 1;
        }

    // A sample JSON response body parsed by the above code:

    // {
    //   "compatibleDevices": [
    //     {
    //       "compatible": boolean,
    //       "device": {
    //         "arn": "string",
    //         "availability": "string",
    //         "carrier": "string",
    //         "cpu": {
    //           "architecture": "string",
    //           "clock": number,
    //           "frequency": "string"
    //         },
    //         "fleetName": "string",
    //         "fleetType": "string",
    //         "formFactor": "string",
    //         "heapSize": number,
    //         "image": "string",
    //         "instances": [
    //           {
    //             "arn": "string",
    //             "deviceArn": "string",
    //             "instanceProfile": {
    //               "arn": "string",
    //               "description": "string",
    //               "excludeAppPackagesFromCleanup": [
    //                 "string"
    //               ],
    //               "name": "string",
    //               "packageCleanup": boolean,
    //               "rebootAfterUse": boolean
    //             },
    //             "labels": [
    //               "string"
    //             ],
    //             "status": "string",
    //             "udid": "string"
    //           }
    //         ],
    //         "manufacturer": "string",
    //         "memory": number,
    //         "model": "string",
    //         "modelId": "string",
    //         "name": "string",
    //         "os": "string",
    //         "platform": "string",
    //         "radio": "string",
    //         "remoteAccessEnabled": boolean,
    //         "remoteDebugEnabled": boolean,
    //         "resolution": {
    //           "height": number,
    //           "width": number
    //         }
    //       },
    //       "incompatibilityMessages": [
    //         {
    //           "message": "string",
    //           "type": "string"
    //         }
    //       ]
    //     }
    //   ],
    //   "incompatibleDevices": [
    //     {
    //       "compatible": boolean,
    //       "device": {
    //         "arn": "string",
    //         "availability": "string",
    //         "carrier": "string",
    //         "cpu": {
    //           "architecture": "string",
    //           "clock": number,
    //           "frequency": "string"
    //         },
    //         "fleetName": "string",
    //         "fleetType": "string",
    //         "formFactor": "string",
    //         "heapSize": number,
    //         "image": "string",
    //         "instances": [
    //           {
    //             "arn": "string",
    //             "deviceArn": "string",
    //             "instanceProfile": {
    //               "arn": "string",
    //               "description": "string",
    //               "excludeAppPackagesFromCleanup": [
    //                 "string"
    //               ],
    //               "name": "string",
    //               "packageCleanup": boolean,
    //               "rebootAfterUse": boolean
    //             },
    //             "labels": [
    //               "string"
    //             ],
    //             "status": "string",
    //             "udid": "string"
    //           }
    //         ],
    //         "manufacturer": "string",
    //         "memory": number,
    //         "model": "string",
    //         "modelId": "string",
    //         "name": "string",
    //         "os": "string",
    //         "platform": "string",
    //         "radio": "string",
    //         "remoteAccessEnabled": boolean,
    //         "remoteDebugEnabled": boolean,
    //         "resolution": {
    //           "height": number,
    //           "width": number
    //         }
    //       },
    //       "incompatibilityMessages": [
    //         {
    //           "message": "string",
    //           "type": "string"
    //         }
    //       ]
    //     }
    //   ]
    // }

  }

  static {
      System.loadLibrary("chilkat");

      // Note: If the incorrect library name is passed to System.loadLibrary,
      // then you will see the following error message at application startup:
      //"The application <your-application-name> has stopped unexpectedly. Please try again."
  }
}