I updated my Adt bundle with current version (api 18). in previous version i did the following stpes to export android app.File---> export--->android application----> project---->use existing keystore with password --->select alias & Password -----> Destination apk file. if i export the android application in new ADT ,it would be in key format(FILE). am i miss something?
Asked
Active
Viewed 4,004 times
0
-
which format is it then?? – ASP Sep 11 '13 at 04:26
-
@ASP key format(FILE) – Asthme Sep 11 '13 at 04:27
-
that is the keystore u created..... – ASP Sep 11 '13 at 04:28
-
use that keystore to sign your app...and get it from the destination folder. – ASP Sep 11 '13 at 04:28
-
@ASP i already created a keystore for ma app.but that time i didnt enable proguard – Asthme Sep 11 '13 at 04:30
-
now try signing the app with the keystore and export.....and also check whether u r getting any errors while exporting. – ASP Sep 11 '13 at 04:32
-
@ASP thats wheat i did before – Asthme Sep 11 '13 at 04:35
-
@Asp i tracked the error and i updated my question.. – Asthme Sep 11 '13 at 05:15
1 Answers
0
Use this description to know more about ProGuard
When you create an Android project, a proguard.cfg file is automatically generated in the root directory of the project.
To enable ProGuard so that it runs as part of an Ant or Eclipse build, set the proguard.config property in the <project_root>/project.properties
file. The path can be an absolute path or a path relative to the project's root.
If you left the proguard.cfg file in its default location (the project's root directory), you can specify its location like this:
proguard.config=proguard.cfg
You can also move the file to anywhere you want, and specify the absolute path to it:
proguard.config=/path/to/proguard.cfg
These will help you to get solution.

Jamie Palma
- 1
- 1
-
it's showing error proguard.cfg doesnot exist.or its not a regular file. – Asthme Sep 11 '13 at 04:37