Android: Installation Error:unknown Failure-while Running An Apk File In
Solution 1:
I was also facing this issue, I try this and works great.
adb.exe kill-server
adb.exe start-server
Solution 2:
If running in eclipse, Please check the emulator settings..
This happens when AVD is already configured and a new andriod project is created.
So for this.. go to Run>> Run Congurations >> Target.. Select the AVD which is already configured and an option for choosing same AVD for future projects also.
This will start an emulator and thats it.. your application is up !!!
Solution 3:
If You Running In Eclipse, Check Your Settings.
Run Configurations - Common - Select File In Standard Input And Output - Click
Workspace And Choose Your Project.
And Just Click Run.
Solution 4:
Check if the package name contains an uppercase letter,If uppercase letters are included, change them to lowercase.it worked for me
Solution 5:
Even I faced this issue. I used below steps for resolving the issue:
1] adb uninstall your_app_package_name
2] adb kill-server
3] adb start-server
restart the emulator/device after executing above steps.
Now try to run the application. That must work for you.
Post a Comment for "Android: Installation Error:unknown Failure-while Running An Apk File In"