Module Values.AndroidAppSource

Unique identifying information for an Android app. Consists of a package name and a 20 byte SHA-1 certificate fingerprint.

Sourcetype nonrec t = {
  1. package : AndroidPackageName.t;
    (*

    Unique package name identifier for an Android app. Example: com.mydomain.appname

    *)
  2. certificateFingerprint : Sha1CertificateFingerprint.t;
    (*

    20 byte SHA-1 certificate fingerprint associated with the Android app signing certificate. Example: BB:0D:AC:74:D3:21:E1:43:67:71:9B:62:91:AF:A1:66:6E:44:5D:75

    *)
}
Sourceval context_ : string
Sourceval make : package:AndroidPackageName.t -> certificateFingerprint:Sha1CertificateFingerprint.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AndroidPackageName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t