0

hey friends i m trying to load my .apk file on to the device but it shows an error when i m trying to install it in the phone it says

parse error
there is a problem parsing the package

i tried exporting the project on to the phone..

and also tried to export it via android tools by right clicking my project in eclipse!!

is there any other alternative way in which i can send my .apk file to the phone and also with the correct packages!!

how can i overcome this???

Sudhir91
  • 55
  • 1
  • 6
  • 1
    possible duplicate of ["Parse Error : There is a problem parsing the package" while installing Android application](http://stackoverflow.com/questions/1492401/parse-error-there-is-a-problem-parsing-the-package-while-installing-android) – Praveenkumar Jul 02 '12 at 07:29
  • is there an alternate solution....i just cant go with that one!!!! – Sudhir91 Jul 02 '12 at 07:45
  • Just try to sign youa apk file and get it into your device. After, try to run. It will surely works. [See this video](http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=2&ved=0CE0QtwIwAQ&url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DgpxM0ffAvok&ei=T1TxT-CsPMuJrAeOwZm-DQ&usg=AFQjCNGX4HaJvhhcGd3bJZVeJTEG3pgfkg&sig2=4EZdMYpVAR2azdL0g0klOQ) and [See this existing question](http://stackoverflow.com/q/4853011/940096) – Praveenkumar Jul 02 '12 at 07:57
  • i did it earlier but it dint help me!!! – Sudhir91 Jul 02 '12 at 08:11
  • Are you using `eclipse` workspace for android? – Praveenkumar Jul 02 '12 at 09:07
  • Then, just get the apk file from `bin` folder as per **User : Kevin Adesara** answer – Praveenkumar Jul 03 '12 at 12:31

2 Answers2

0

got to terminal/command form and navigate to platform-tools directory.

then type the ./adb install <path of the .apk file> on linux machine.

adb install <path of the .apk file> 

on windows machine.

Vikash Kumar
  • 621
  • 2
  • 6
  • 21
0

You can find .apk file into your project's bin folder. You can install that .apk file into real device via adb command. Read more about adb here.

Kevin Adesara
  • 3,830
  • 1
  • 17
  • 18