Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Marketplace: Are the details (name etc) in the keystore user-visible?

When I sign my app for release on the Android Marketplace I create a keystore file using the keytool application following the instructions here http://developer.android.com/guide/publishing/app-signing.html. This tool asks for first and last name, organizational unit, and more.

Now my question is, will the eventual user of the app actually be able to see these details? Or is it all something internal to the Android Marketplace? I'm particularly wondering about the first and last name.

like image 660
Ben Clayton Avatar asked Nov 14 '11 16:11

Ben Clayton


People also ask

Where are Android keystore files stored?

Keystore file is stored and secured in Google play. Your APKs will be signed by Google Play with app signing key and published to users. Even if you lost your upload key you can contact with Google and you can update your application after validating your account.

Is Android keystore secure?

Security features. The Android Keystore system protects key material from unauthorized use in two ways. First, it reduces the risk of unauthorized use of key material from outside the Android device by preventing the extraction of the key material from application processes and from the Android device as a whole.

What is the use of keystore in app signing?

As a security measure, Android requires that apps be signed in order to be installed. Signing an app first requires creating keystores. A keystore is a storage mechanism for security certificates. A public key certificate is used to sign an APK before deployment to services like the Google Play Store.

Can multiple apps have same keystore?

A keystore is just a means to securely store the public/private key pair which is used to sign your Android apks. So yes, you can use the same keystore to sign multiple apks, without a problem.


1 Answers

The details that you see in the Marketplace on the web and on the devices are details that are provided inside your Google Android Marketplace account - not retrieved from the ketstore you use to sign your app.

like image 135
Matthew Runo Avatar answered Sep 25 '22 02:09

Matthew Runo