December 26, 2013

How to Sign an Android Application

             
                     In this Blog I want to explain How to Sign an Android Application.  Steps,

* Right click your Application Project and then Select Android Tools-> Export Signed Application Package.

* Then It will Show Export Signed Application Package Dialog and In this Dialog it will Show the Application Name. Then Press Next.

 * Then It will ask for keystore. Browse the Keystore and enter the password of keystore then press Next.

 * Then it will show the key alias in the keystore. Select the key alias and enter the password then press Next.


 * Browse the Destination of .apk file to Save. It will show the Certificate expire date and MD5 and SHA1 values of the signed keytool. Press Finish.





 

How to Create a Keytool in MAC


                      Keytool is a Certificate which is used to sign the Application. This is used to identify the author of the application also establishing relationship between application. When the user want to publish the app in to Google Pay the User have to Sign the application with a Keytool.

In this Blog I am going to Explain How to Create a Keytool in MAC.

* Open Terminal

*  Insert Comment
keytool -genkey -v -keystore keystore_Name.keystore -alias key_alias_Name -keyalg RSA -keysize 2048 -validity 10000


Then It will Ask for Password and some other details.

December 24, 2013

How to import an Android project into Eclipse

In this Blog I am Explain How to import an Existing Android Application Project into Eclipse.

* Start Eclipse and select File Menu ->Import. Then it will display import dialog.  
*  Select Android ->  Existing Android code in to Workspace.





Browse the project location. After when we browse the location it will display the project name on the same window and then press Finish. If you want to copy the project into your workspace the check on "Copy projects to workspace".

 
* Then Press Finish. Then we can see the project in Eclipse’s Package Explorer.