Skip to content Skip to sidebar Skip to footer

How To Create A New Keystore In Xamarin.android?

I'm trying to publish a xamarin.android app. I'm using Visual Studio with Xamarin Android 6, so I followed this. In part 2, it describes how to create a new keystore as shown in th

Solution 1:

Reyhaneh,

Keytool is an executable provided by the Java SDK. You'll find it in your Java SDK folder, for example:

C:\Program Files(x86)\Java\jdk1.7.0_55\bin\keytool.exe

You can execute it in a normal command prompt. To create a new keystore, open a command prompt with the following line:

"C:\Program Files (x86)\Java\jdk1.7.0_55\bin\keytool.exe" -genkeypair -v -keystore <filename>.keystore -alias <key-name> -keyalg RSA -keysize 2048 -validity 10000

Post a Comment for "How To Create A New Keystore In Xamarin.android?"