Android studio, debug.keystore is missing

After creating my project on Android Studio 1.2 on Ubuntu 14.04, I cannot get any debug.keystore file in the folder. / android, which I need for google map APIs. I tried it again and again, but could not understand. Can someone help me?

+4
source share
1 answer

According to the documentation .. Debugging keystore is in the path: $ HOME / .android / debug.keystore and if it is not there, it will automatically generate it (after checking your application in debug mode)

read this from the Android developer documentation .

Eclipse JDK - Windows Cygwin :

keytool -genkeypair -alias androiddebugkey -keypass android -keystore debug.keystore -storepass android -dname "CN=Android Debug,O=Android,C=US" -validity 9999

Keytool JDK PATH . : C:\\bin

. Cygwin ( cygwin), debug.keystore: C:\\home\\

+6

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


All Articles