ChuddyWagogo
ChuddyWagogo

Reputation: 37

Can't locate Mono for Android Folder. Xamarin Android for Maps

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

Answers (1)

Grace Feng
Grace Feng

Reputation: 16654

  1. Find the debug.keystore at the following path for example: C:\Users\YOURACCOUNT\AppData\Local\Xamarin\Mono for Android.

  2. 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.

  3. Open CMD as Administrator.

  4. Access to the bin folder of your JDK, by my side it is cd C:\Program Files\Java\jdk1.8.0_111\bin.

  5. 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

Related Questions