Does an Android application collect an application on another computer Create a new signature certificate?

I created the application on my Windows PC, and from this PC I published the application on the Google Play Store. I transferred (transferred through an external hard drive) all my projects from my computer to my Mac.

Now I wonder if compiling the same application on a Mac will force it to create a new certificate?

The reason I would like to know is that I want to publish the update and would rather work on a project on Mac, but I don't want to have a problem when I decide to publish the application from Mac to the Play Store will see a different certificate. and the app will be published as if it were a brand new APK.

+4
source share
4 answers

No , it does not depend on the computer.

Make sure you copy the Keystore that you used to sign it from the old computer to the new one, and everything will be exactly the same.

Keystore is just a file in which all your keys are stored (and usually has a .jks extension).

The main documentation states:

A keystore is a binary file containing a set of private keys. You should store the vault in a safe and secure place.

A private key is an object that must be identified with the application, such as a person or company.

, ( ), .

+1

Android Studio , . , Google Play, , . : http://developer.android.com/tools/publishing/app-signing.html

, , , Play Store.

+1

, , , . ( ).

0

. . , .

0

Source: https://habr.com/ru/post/1628031/


All Articles