Furqan
Furqan

Reputation: 895

app-debug.apk is crashing while I install it manually on my Android device

My app is running fine on Android device when I run project from Android studio. But when I install app-debug.apk manually on my device then app is crashing on starting. And app-debug-unaligned.apk is not generating. Kindly give any solution, Thanks in advance.

Upvotes: 9

Views: 11631

Answers (4)

Abhijit
Abhijit

Reputation: 105

Mostly the issue comes due to presence of older application with same package name or different version number. Also, if you are sharing the apk using whatsapp, its likely to happen that apk wont install properly. And lastly improper build can also cause the issue. So to sum up-

  1. Uninstall previous app
  2. Check for version conflicts
  3. Avoid sharing apk through whatsapp
  4. Clean project
  5. Build Apk and then distribute
  6. Build signed Apk and then try installing(Recommended)

Upvotes: 1

Pavan Kumar
Pavan Kumar

Reputation: 81

First install your apk in your mobile and then try using the app. The app gets crashed on some click event. perform that click and check the android monitor for error and proceed resolving based on ur error.

For me it worked when i have given public modifier to onclick methods

Upvotes: 3

sharma_kunal
sharma_kunal

Reputation: 2192

I resolved this issue by unchecking instant run from Settings in android Studio.

Upvotes: 7

Chetan Joshi
Chetan Joshi

Reputation: 5711

Delete debug.apk from output folder under build in app. and generate again and install .

Upvotes: 8

Related Questions