Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am getting a noclassdeffound exception, when running my app with the emulator:

@Override
public void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);
    Intent myIntent = new Intent(ActivityPano.this, ActivityTable.class);
    startActivity(myIntent);
}

the ActivityTable is causing the exception.

it is defined in an android-library project, which i have included in the java build path as well as in the android references dialog. there are no errors in eclipse, but when started in the emulator it crashes.

here is my manifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.mypackage"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar" android:debuggable="false" android:description="@string/description">
        <activity android:name=".ActivityHPanorama"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>


        <activity android:name="com.mypackage.ActivityTable"></activity>

    </application>


<uses-sdk android:minSdkVersion="3"></uses-sdk>
</manifest> 

this is the error from the logcat:

04-18 11:32:07.767: ERROR/dalvikvm(483): Could not find class com.mypackage.ActivityTable', referenced from method com.mypackage.ActivityHPanorama.onCreate

what makes me a bit suspicious is this line from the console (not the logcat):

[2011-04-18 14:55:59 - panorama] Could not find panorama.apk!

panorama is the name of the library project.

share|improve this question
can you paste the contents of your manifest file here? – Mahendra Apr 18 '11 at 10:12
yep, i have edited my post. – clamp Apr 18 '11 at 10:21
The problem is that you haven't defined any intent-filters for your "ActivityTable" as well... Look for my answer below.. – Mahendra Apr 18 '11 at 10:34

4 Answers

If you are depenedencies are correct when you are installing the app you should see following in console logs

[2011-04-19 16:41:10 - TicTacToe] Installing TicTacToe.apk... [2011-04-19 16:41:12 - TicTacToe] Success!

But since you were mentioning that Could not find panorama.apk! I tried replicating such behaviour using tic-tac-toe sameple library..

This is what i did,

Added TicTacToe Library to eclipse, Added TicTacToe app also to eclipse.

Right clicked on Library project, went to android tab and removed the IsLibrary check

Right clicked on Main app project, went to android tab removed dependency

The went to java build path of Main app project and added Library project as required project

Compilation went fine, but when installing the app it is checking for library.apk I am guessing if you are doing anything similar tat might be the issue.

[2011-04-19 16:42:16 - TicTacToe] Installing TicTacToe.apk... [2011-04-19 16:42:20 - TicTacToe] Success! [2011-04-19 16:42:20 - TicTacToe] Project dependency found, installing: TicTacToeLib [2011-04-19 16:42:20 - TicTacToeLib] Uploading TicTacToeLib.apk onto device 'SH0A5PL08769' [2011-04-19 16:42:20 - TicTacToeLib] Installing TicTacToeLib.apk... [2011-04-19 16:42:24 - TicTacToeLib] Success!

share|improve this answer
yes, super.oncreate is called just before that. – clamp Apr 18 '11 at 12:37
please post your logcat logs, most likely it will be a warning message. Also can you post your default.properties here – Naresh Apr 18 '11 at 12:41
thanks, i have edited my original post accordingly – clamp Apr 18 '11 at 12:57
try copying all the declarations of activities , providers, receivers services etc.. in your android manifest.xml – Naresh Apr 18 '11 at 13:02
i can't see how this makes any sense. the error is beause the VM cant find the class file of this one class. – clamp Apr 18 '11 at 13:11
show 2 more comments

have you add this class in your Manifest?

<activity android:name="ActivityTable"></activity>

share|improve this answer
yes, it's there. actually with the full package name. – clamp Apr 18 '11 at 9:46

The problem is that you haven't defined any intent-filters for your "ActivityTable" as well...

<activity android:name=".ActivityTable" 
                  android:label="ActivityTable">
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>

This should help..

share|improve this answer
thanks, but it still gives the same error, if i add this intent-filter – clamp Apr 18 '11 at 11:17
can you post the error message? – Mahendra Apr 18 '11 at 11:17
04-18 11:32:07.767: ERROR/dalvikvm(483): Could not find class 'com.mypackage.ActivityTable', referenced from method com.mypackage.ActivityHPanorama.onCreate – clamp Apr 18 '11 at 11:33
you can see the detailed error message in the Logcat. Just copy the error message from it and paste it here.. this would help to find the exact cause.. – Mahendra Apr 18 '11 at 11:33

I think you should use

 Intent myScreen = new Intent();
    myScreen.setClassName(YourCurrentScreen.this,
fullpackagename.yourclassName.class.getName());
    startActivityForResult(myScreen, 0);

This would definitely work

share|improve this answer
nope, i am still getting the same error. what exactly do you mean with YourCurrentScreen ? – clamp Apr 18 '11 at 13:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.