SigningInfo Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| SigningInfo() | |
| SigningInfo(SigningInfo) | |
| SigningInfo(Int32, ICollection<Signature>, ICollection<IPublicKey>, ICollection<Signature>) |
Creates a new instance of information used to sign the APK. |
SigningInfo()
[Android.Runtime.Register(".ctor", "()V", "", ApiSince=28)]
public SigningInfo();
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
SigningInfo(SigningInfo)
[Android.Runtime.Register(".ctor", "(Landroid/content/pm/SigningInfo;)V", "", ApiSince=28)]
public SigningInfo(Android.Content.PM.SigningInfo? orig);
[<Android.Runtime.Register(".ctor", "(Landroid/content/pm/SigningInfo;)V", "", ApiSince=28)>]
new Android.Content.PM.SigningInfo : Android.Content.PM.SigningInfo -> Android.Content.PM.SigningInfo
Parameters
- orig
- SigningInfo
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
SigningInfo(Int32, ICollection<Signature>, ICollection<IPublicKey>, ICollection<Signature>)
Creates a new instance of information used to sign the APK.
[Android.Runtime.Register(".ctor", "(ILjava/util/Collection;Ljava/util/Collection;Ljava/util/Collection;)V", "", ApiSince=35)]
public SigningInfo(int schemeVersion, System.Collections.Generic.ICollection<Android.Content.PM.Signature>? apkContentsSigners, System.Collections.Generic.ICollection<Java.Security.IPublicKey>? publicKeys, System.Collections.Generic.ICollection<Android.Content.PM.Signature>? signingCertificateHistory);
[<Android.Runtime.Register(".ctor", "(ILjava/util/Collection;Ljava/util/Collection;Ljava/util/Collection;)V", "", ApiSince=35)>]
new Android.Content.PM.SigningInfo : int * System.Collections.Generic.ICollection<Android.Content.PM.Signature> * System.Collections.Generic.ICollection<Java.Security.IPublicKey> * System.Collections.Generic.ICollection<Android.Content.PM.Signature> -> Android.Content.PM.SigningInfo
Parameters
- schemeVersion
- Int32
version of signing schema.
- apkContentsSigners
- ICollection<Signature>
signing certificates.
- publicKeys
- ICollection<IPublicKey>
for the signing certificates.
- signingCertificateHistory
- ICollection<Signature>
All signing certificates the package has proven it is authorized to use.
- Attributes
Remarks
Creates a new instance of information used to sign the APK.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.