Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>First for the development generate a SHA-1 from debug.keystore: Navigate to C:\Program Files\Java\jdk1.6.0\bin>..... where your bin located then execute below command</p> <pre><code> C:\Program Files\Java\jdk1.6.0\bin&gt;keytool -v -list -alias androiddebugkey -keystore "D :debug.keystore" -storepass android -keypass android or C:\Program Files\Java\jdk1.6.0\bin&gt;keytool -v -list -alias androiddebugkey -keystore "C:\Documents and Settings\user1\.android\debug.keystore" -storepass android -keypass android </code></pre> <p>Now, you can get one SHA-1 certificate and generate API key from Google API console. Add this key into your manifest.xml file. remember this API key only for the development. Using this key built apk u can not publish into market.</p> <p>Now, turn to make your own keystore: execute below command </p> <pre><code>C:\Program Files\Java\jdk1.6.0\bin&gt;keytool -genkey -v -keystore OWN.keystor e -alias ALIASNAME -keyalg RSA -keysize 2048 -validity 300000 </code></pre> <p>and give all the required details for this keystore. Now time to generate SHA-1 from your OWN.keystore execute below commnad</p> <pre><code>C:\Program Files\Java\jdk1.6.0\bin&gt;keytool -v -list -alias ALIASNAME -keystore "C:\Program Files\Java\jdk1.6.0\bin\OWN.keystore" -storepass PASSWORD -keypass KEYPASSWORD </code></pre> <p>Now, you can get one SHA-1 certificate and generate API key from Google API console. Replace this key into your manifest.xml file. Now your app is ready to publish into market.</p> <p>This may helpful to you.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload