Reputation: 21
hi I am tired to try creating android keystore in xamarin visual studio 2017 when I click ad hoc and press plus sign to add keystore nothing saved.
I follow tut. in below page but I it doesn't add keystor.
here the xamarin tut I follow it
best regard
Upvotes: 1
Views: 2065
Reputation: 155
1) Generate new key using command prompt:
keytool -genkeypair -alias upload -keyalg RSA -keysize 2048 -validity 9125 -keystore keystore.jks
2) From app signing, select the import option and import the created keystore path
Upvotes: 1
Reputation: 659
You can create keystore in Android Studio if VS can't do it for some reason. The process should look similar to this in VS and then you can use it to sign your app in VS.
Upvotes: 1