Cloud Testing API . applicationDetailService

Instance Methods

getApkDetails(body, x__xgafv=None)

Gets the details of an Android application APK.

Method Details

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

Args:
  body: object, The request body. (required)
    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-debug-unaligned.apk
  }

  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 # Details of the Android APK.
        # contents.
      "apkManifest": { # An Android app manifest. See
          # http://developer.android.com/guide/topics/manifest/manifest-intro.html
        "packageName": "A String", # Full Java-style package name for this application, e.g.
            # "com.example.foo".
        "maxSdkVersion": 42, # Maximum API level on which the application is designed to run.
        "minSdkVersion": 42, # Minimum API level required for the application to run.
        "targetSdkVersion": 42, # Specifies the API Level on which the application is designed to run.
        "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
            "mimeType": "A String", # The android:mimeType value of the  tag.
            "actionNames": [ # The android:name value of the  tag.
              "A String",
            ],
            "categoryNames": [ # The android:name value of the  tag.
              "A String",
            ],
          },
        ],
      },
    },
  }