Reputation: 37
Can't locate Mono for Android folder inside Xamarin file in C:\Users[USERNAME]\AppData\Local\Xamarin\Mono for Android\debug.keystore
Need to it to obtain my signing key fingerprint for android google maps.
Thank you in advance!
Upvotes: 0
Views: 1062
Reputation: 16654
Find the debug.keystore
at the following path for example: C:\Users\YOURACCOUNT\AppData\Local\Xamarin\Mono for Android
.
Copy this debug.keystore
into the bin folder of your JDK. For example, I'm using JDK1.8 for Android 7.0, then I need to copy this file to the path: C:\Program Files\Java\jdk1.8.0_111\bin
.
Open CMD as Administrator.
Access to the bin folder of your JDK, by my side it is cd C:\Program Files\Java\jdk1.8.0_111\bin
.
As @SushiHangover suggested, by my side, I need to execute keytool.exe -list -v -keystore "C:\Program Files\Java\jdk1.8.0_111\bin\debug.keystore" -alias androiddebugkey -storepass android -keypass android
.
The path of your JDK is important here, be sure you have the right path.
Upvotes: 1