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

  • Home
  • SEARCH
  • 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 8721879
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T07:17:36+00:00 2026-06-13T07:17:36+00:00

This worked at one time. I dont know what I did to kill it.

  • 0

This worked at one time. I dont know what I did to kill it. App Force close before any thing happns.
Below is the LogCat

10-21 15:34:14.503: E/AndroidRuntime(22129): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.bigtexapps.android.DropBubble/com.bigtexapps.android.DropBubble.Menu}: java.lang.ClassNotFoundException: com.bigtexapps.android.DropBubble.Menu in loader dalvik.system.PathClassLoader[/data/app/com.bigtexapps.android.DropBubble-2.apk]

Below is the Android Manifest:

 <?xml version="1.0" encoding="utf-8"?>
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.bigtexapps.android.DropBubble"
      android:versionCode="1"
      android:versionName="1.0" >

 <uses-sdk android:minSdkVersion="7" 
      android:targetSdkVersion="8"/>

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>

<application android:icon="@drawable/icon" 
         android:label="@string/app_name">
<activity    android:name=".Menu"
         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=".DropBubble"> </activity>

  <activity android:name=".Help"> </activity>

 <activity android:name=".GameOver"> </activity>


  </application>

 </manifest>

Below is the first part of the Menu.java:

package com.bigtexapps.android.DropBubble;

import org.anddev.andengine.engine.Engine;
import org.anddev.andengine.engine.camera.Camera;
import org.anddev.andengine.engine.options.EngineOptions;
import org.anddev.andengine.engine.options.EngineOptions.ScreenOrientation;
import org.anddev.andengine.engine.options.resolutionpolicy.RatioResolutionPolicy;
import org.anddev.andengine.entity.scene.Scene;
import org.anddev.andengine.entity.scene.menu.MenuScene;
import org.anddev.andengine.entity.scene.menu.MenuScene.IOnMenuItemClickListener;
import org.anddev.andengine.entity.scene.menu.item.IMenuItem;
import org.anddev.andengine.entity.scene.menu.item.SpriteMenuItem;
import org.anddev.andengine.entity.sprite.Sprite;
import org.anddev.andengine.opengl.texture.Texture;
import org.anddev.andengine.opengl.texture.TextureOptions;
import org.anddev.andengine.opengl.texture.region.TextureRegion;
import org.anddev.andengine.opengl.texture.region.TextureRegionFactory;
import org.anddev.andengine.ui.activity.BaseGameActivity;
import android.content.Intent;
/**
 * @author Roger Belk
 * 
*/
 public class Menu extends BaseGameActivity implements IOnMenuItemClickListener{

// ===========================================================
// Constants
// ===========================================================

private static final int CAMERA_WIDTH = 320;
private static final int CAMERA_HEIGHT = 480;
protected static final int MENU_START = 0;
protected static final int MENU_HELP = MENU_START +1;
protected static final int MENU_QUIT = MENU_HELP + 1;

// ===========================================================
// Fields
// ===========================================================
private Camera mCamera;
private MenuScene mMenuScene;
private Scene mMainScene;
private Texture mStartBackGroundTexture;
private TextureRegion mStartBackGroundTextureRegion;
private Texture mStartGameTexture;
private TextureRegion mStartGameTextureRegion;
private TextureRegion mHelpTextureRegion;
private TextureRegion mExitTextureRegion;

public Engine onLoadEngine() {
    this.mCamera = new Camera(0, 0, CAMERA_WIDTH, CAMERA_HEIGHT);
    return new Engine(new EngineOptions(true, ScreenOrientation.PORTRAIT, 
        new RatioResolutionPolicy(CAMERA_WIDTH,CAMERA_HEIGHT),this.mCamera));   
}

public void onLoadResources() {
    //To import background of resources
    this.mStartBackGroundTexture = new Texture(512, 512, TextureOptions.DEFAULT);
    this.mStartBackGroundTextureRegion = TextureRegionFactory.createFromAsset(this.mStartBackGroundTexture, this, "gfx/startbg.png", 0, 0);
    //Import to start the game resources
    this.mStartGameTexture = new Texture(256,256,TextureOptions.BILINEAR);
    this.mStartGameTextureRegion = TextureRegionFactory.createFromAsset(this.mStartGameTexture, this, "gfx/menu_start.png",0,0);
    this.mHelpTextureRegion = TextureRegionFactory.createFromAsset(this.mStartGameTexture, this, "gfx/menu_help.png",0,50);
    this.mExitTextureRegion = TextureRegionFactory.createFromAsset(this.mStartGameTexture, this, "gfx/menu_quit.png",0,100);

    this.mEngine.getTextureManager().loadTextures(this.mStartBackGroundTexture,this.mStartGameTexture);
}

public Scene onLoadScene() {
    this.createMenuScene();
    this.mMainScene = new Scene(1);
    final int centerX = (CAMERA_WIDTH - this.mStartBackGroundTextureRegion.getWidth()) / 2;
    final int centerY = (CAMERA_HEIGHT -      this.mStartBackGroundTextureRegion.getHeight()) / 2;
    final Sprite bg = new Sprite(centerX, centerY, this.mStartBackGroundTextureRegion); 
    this.mMainScene.setChildScene(this.mMenuScene, false, true, true);  
    this.mMainScene.getTopLayer().addEntity(bg);
    return this.mMainScene;
}
  • 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-13T07:17:38+00:00Added an answer on June 13, 2026 at 7:17 am

    I think you have not bundled the jar with your apk. What you need to do is just configure your build path settings and check the export option from eclipse for corresponding jars.

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

Sidebar

Related Questions

I haven't quite worked this one out yet - how do I set DEBUG
This is probably a really simple question but one I've never quite worked out
This code worked perfectly until a short time ago. The KML and the Javascript
I am showing a Visual Studio toolwindow in this way. It worked some time
I really don't know what is going on. It worked the first time, then
At the beginning this worked fine: $ rake cucumber:all But then $ script/plugin install
I have come across Evernote's bookmarklet and was wondering how this worked. You can
I tried to compile Qt+Webkit statically with MS VS 2008 and this worked. C:\Qt\4.6.2>configure
I'm trying to use depedency resolver inside a Web Api method. This worked fine
This feature worked a bit, then stopped working. Background: Given a user is logged

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.