Phonegap: Unfortunately Phonegapexample Has Stopped
I am using the latest version of PhoneGap. I am using their code, modified only the App Name and when I run it on the emulator I am getting this error: 'Unfortunately phonegapExamp
Solution 1:
I am using their code, modified only the App Name
If you only change the name in the manifest:
android:name="Tasker"
You will see these errors. You need to rename the class that android:name
points to as well:
publicclassTasker ... {
// This: ^^^^^^ must match the manifest
(You will need refactor the file to change the file name too.)
Post a Comment for "Phonegap: Unfortunately Phonegapexample Has Stopped"