Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8949045
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T13:08:51+00:00 2026-06-15T13:08:51+00:00

I am using the latest version of PhoneGap. I am using their code, modified

  • 0

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 phonegapExample has stopped”.

My LogCat:

12-07 00:04:48.573: I/Process(996): Sending signal. PID: 996 SIG: 9
12-07 00:04:51.814: W/Trace(1013): Unexpected value from nativeGetEnabledTags: 0
12-07 00:04:51.814: W/Trace(1013): Unexpected value from nativeGetEnabledTags: 0
12-07 00:04:51.814: W/Trace(1013): Unexpected value from nativeGetEnabledTags: 0
12-07 00:04:52.043: W/Trace(1013): Unexpected value from nativeGetEnabledTags: 0
12-07 00:04:52.053: W/Trace(1013): Unexpected value from nativeGetEnabledTags: 0
12-07 00:04:52.053: D/AndroidRuntime(1013): Shutting down VM
12-07 00:04:52.053: W/dalvikvm(1013): threadid=1: thread exiting with uncaught exception (group=0x40a70930)
12-07 00:04:52.113: E/AndroidRuntime(1013): FATAL EXCEPTION: main
12-07 00:04:52.113: E/AndroidRuntime(1013): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.andreiraileanu.tasker/com.andreiraileanu.tasker.Tasker}: java.lang.ClassNotFoundException: Didn't find class "com.andreiraileanu.tasker.Tasker" on path: /data/app/com.andreiraileanu.tasker-1.apk
12-07 00:04:52.113: E/AndroidRuntime(1013):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2106)
12-07 00:04:52.113: E/AndroidRuntime(1013):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2230)
12-07 00:04:52.113: E/AndroidRuntime(1013):     at android.app.ActivityThread.access$600(ActivityThread.java:141)
12-07 00:04:52.113: E/AndroidRuntime(1013):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1234)
12-07 00:04:52.113: E/AndroidRuntime(1013):     at android.os.Handler.dispatchMessage(Handler.java:99)
12-07 00:04:52.113: E/AndroidRuntime(1013):     at android.os.Looper.loop(Looper.java:137)
12-07 00:04:52.113: E/AndroidRuntime(1013):     at android.app.ActivityThread.main(ActivityThread.java:5039)
12-07 00:04:52.113: E/AndroidRuntime(1013):     at java.lang.reflect.Method.invokeNative(Native Method)
12-07 00:04:52.113: E/AndroidRuntime(1013):     at java.lang.reflect.Method.invoke(Method.java:511)
12-07 00:04:52.113: E/AndroidRuntime(1013):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
12-07 00:04:52.113: E/AndroidRuntime(1013):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
12-07 00:04:52.113: E/AndroidRuntime(1013):     at dalvik.system.NativeStart.main(Native Method)
12-07 00:04:52.113: E/AndroidRuntime(1013): Caused by: java.lang.ClassNotFoundException: Didn't find class "com.andreiraileanu.tasker.Tasker" on path: /data/app/com.andreiraileanu.tasker-1.apk
12-07 00:04:52.113: E/AndroidRuntime(1013):     at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:65)
12-07 00:04:52.113: E/AndroidRuntime(1013):     at java.lang.ClassLoader.loadClass(ClassLoader.java:501)
12-07 00:04:52.113: E/AndroidRuntime(1013):     at java.lang.ClassLoader.loadClass(ClassLoader.java:461)
12-07 00:04:52.113: E/AndroidRuntime(1013):     at android.app.Instrumentation.newActivity(Instrumentation.java:1054)
12-07 00:04:52.113: E/AndroidRuntime(1013):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2097)
12-07 00:04:52.113: E/AndroidRuntime(1013):     ... 11 more

AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:windowSoftInputMode="adjustPan"
      package="com.andreiraileanu.tasker" android:versionName="1.0" android:versionCode="1" android:hardwareAccelerated="true">
    <supports-screens
        android:largeScreens="true"
        android:normalScreens="true"
        android:smallScreens="true"
        android:xlargeScreens="true"
        android:resizeable="true"
        android:anyDensity="true"
        />

    <uses-permission android:name="android.permission.VIBRATE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.RECEIVE_SMS" />
    <uses-permission android:name="android.permission.READ_CONTACTS" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />   
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
    <uses-permission android:name="android.permission.BROADCAST_STICKY" />

    <uses-sdk android:minSdkVersion="13" android:targetSdkVersion="17"/>
    <application android:icon="@drawable/icon" android:label="@string/app_name" android:hardwareAccelerated="true" android:allowBackup="true">
        <activity android:name="Tasker" android:label="@string/app_name" android:theme="@android:style/Theme.Black.NoTitleBar"  android:configChanges="orientation|screenSize|keyboardHidden">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest> 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T13:08:52+00:00Added an answer on June 15, 2026 at 1:08 pm

    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:

    public class Tasker ... {
    //     This: ^^^^^^ must match the manifest
    

    (You will need refactor the file to change the file name too.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm developing a HTML5-based iOS app with PhoneGap. I'm using the latest version of
I am using the latest phonegap/cordova version 2.1. and I am getting too many
I am using a batch script for getting the latest version of specific projects.
I'm using mac os lion with the latest xcode version. I installed phonegap from
Am using android latest version sdk with 4.1 version emulator in eclipse (Helios) .
I want to check if user is using the latest version of the app.
We are using PhoneGap/Cordova 1.8.1 (Android) with the latest version of the ChildBrowser plugin.
Using the latest version of Resharper (4.5.x) with VS2008. Every now and then (pretty
I'm using the latest version of the jquery plugin DataTables and I tried to
I'm using XAMPP (latest version) on OS 10.6.2, that's bundled with PHP 5.3.0 I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.