Ajay Patel
Ajay Patel

Reputation: 5418

My .Apk is work in simulator but not working in Android mobile?

Hay geek guys ... really i am facing this type problem first time..

My app is working good in simulator but not working in Galaxy 5.. i am getting Package Parsing error ..i don't know what this error i am getting

help me to solve out ...

Thanks in advance

Upvotes: 0

Views: 255

Answers (2)

Umakant Patil
Umakant Patil

Reputation: 2308

As Jana said. this may be sdk version problem. But what i think is you have not signed your app. Please check this http://developer.android.com/guide/publishing/app-signing.html

Upvotes: 0

Jana
Jana

Reputation: 2920

This is issue caused to variation SDK versions.

I think Galaxy 5 runs OS 2.1 and your sdk target your project might be 2.2 or above..

Try setting the <uses-sdk android:minSdkVersion="4" /> in your manifest file of the project.

Upvotes: 1

Related Questions