Cloud Testing API . applicationDetailService

Instance Methods

close()

Close httplib2 connections.

getApkDetails(body=None, x__xgafv=None)

Gets the details of an Android application APK.

Method Details

close()
Close httplib2 connections.
getApkDetails(body=None, x__xgafv=None)
Gets the details of an Android application APK.

Args:
  body: object, The request body.
    The object takes the form of:

{ # A reference to a file, used for user inputs.
  "gcsPath": "A String", # A path to a file in Google Cloud Storage. Example: gs://build-app-1414623860166/app%40debug-unaligned.apk These paths are expected to be url encoded (percent encoding)
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Response containing the details of the specified Android application APK.
  "apkDetail": { # Android application details based on application manifest and apk archive contents. # Details of the Android APK.
    "apkManifest": { # An Android app manifest. See http://developer.android.com/guide/topics/manifest/manifest-intro.html
      "applicationLabel": "A String", # User-readable name for the application.
      "intentFilters": [
        { # The section of an tag. https://developer.android.com/guide/topics/manifest/intent-filter-element.html
          "actionNames": [ # The android:name value of the tag.
            "A String",
          ],
          "categoryNames": [ # The android:name value of the tag.
            "A String",
          ],
          "mimeType": "A String", # The android:mimeType value of the tag.
        },
      ],
      "maxSdkVersion": 42, # Maximum API level on which the application is designed to run.
      "minSdkVersion": 42, # Minimum API level required for the application to run.
      "packageName": "A String", # Full Java-style package name for this application, e.g. "com.example.foo".
      "targetSdkVersion": 42, # Specifies the API Level on which the application is designed to run.
      "usesPermission": [ # Permissions declared to be used by the application
        "A String",
      ],
    },
  },
}