Close httplib2 connections.
getApkDetails(body=None, bundleLocation_gcsPath=None, x__xgafv=None)
Gets the details of an Android application APK.
close()
Close httplib2 connections.
getApkDetails(body=None, bundleLocation_gcsPath=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) } bundleLocation_gcsPath: 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. "apkDetail": { # Android application details based on application manifest and archive contents. # Details of the Android App. "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. "metadata": [ # Meta-data tags defined in the manifest. { # A tag within a manifest. https://developer.android.com/guide/topics/manifest/meta-data-element.html "name": "A String", # The android:name value "value": "A String", # The android:value value }, ], "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". "services": [ # Services contained in the tag. { # The section of an tag. https://developer.android.com/guide/topics/manifest/service-element "intentFilter": [ # Intent filters in the service { # 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. }, ], "name": "A String", # The android:name value }, ], "targetSdkVersion": 42, # Specifies the API Level on which the application is designed to run. "usesFeature": [ # Feature usage tags defined in the manifest. { # A tag within a manifest. https://developer.android.com/guide/topics/manifest/uses-feature-element.html "isRequired": True or False, # The android:required value "name": "A String", # The android:name value }, ], "usesPermission": [ "A String", ], "usesPermissionTags": [ # Permissions declared to be used by the application { # The tag within a manifest. https://developer.android.com/guide/topics/manifest/uses-permission-element.html "maxSdkVersion": 42, # The android:name value "name": "A String", # The android:name value }, ], "versionCode": "A String", # Version number used internally by the app. "versionName": "A String", # Version number shown to users. }, }, }