Note that there are some explanatory texts on larger screens.

plurals
  1. POCouldn't solve issue of ClassNotFoundException?
    primarykey
    data
    text
    <p>Hi Everyone I am using the code given here <a href="https://stackoverflow.com/questions/3145089/what-is-the-simplest-and-most-robust-way-to-get-the-users-current-location-in-a/3145655#3145655">What is the simplest and most robust way to get the user&#39;s current location on Android?</a> to get current location But I am getting the <code>ClassNotFoundExecption</code> Here is my complete code:</p> <p>//MapActivity code:</p> <pre><code>package com.example.gmaps; import com.example.gmaps.MyLocation.LocationResult; import com.google.android.maps.MapActivity; import android.location.Location; import android.os.Bundle; import android.app.Activity; import android.view.Menu; import android.widget.Toast; public class MainActivity extends MapActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); LocationResult locationResult = new LocationResult(){ @Override public void gotLocation(Location location){ //Got the location! Toast.makeText(getApplicationContext(), "I got the location", Toast.LENGTH_LONG).show(); } }; MyLocation myLocation = new MyLocation(); myLocation.getLocation(MainActivity.this, locationResult); } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.activity_main, menu); return true; } @Override protected boolean isRouteDisplayed() { // TODO Auto-generated method stub return false; } </code></pre> <p>}</p> <p>ANd in MyLocation I have same code as given in above link Here is my logcat</p> <pre><code>&gt; 10-18 16:49:51.222: E/AndroidRuntime(24816): FATAL EXCEPTION: main 10-18 16:49:51.222: E/AndroidRuntime(24816): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.example.gmaps/com.example.gmaps.MainActivity}: java.lang.ClassNotFoundException: com.example.gmaps.MainActivity 10-18 16:49:51.222: E/AndroidRuntime(24816): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1993) 10-18 16:49:51.222: E/AndroidRuntime(24816): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2104) 10-18 16:49:51.222: E/AndroidRuntime(24816): at android.app.ActivityThread.access$600(ActivityThread.java:132) 10-18 16:49:51.222: E/AndroidRuntime(24816): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1157) 10-18 16:49:51.222: E/AndroidRuntime(24816): at android.os.Handler.dispatchMessage(Handler.java:99) 10-18 16:49:51.222: E/AndroidRuntime(24816): at android.os.Looper.loop(Looper.java:137) 10-18 16:49:51.222: E/AndroidRuntime(24816): at android.app.ActivityThread.main(ActivityThread.java:4575) 10-18 16:49:51.222: E/AndroidRuntime(24816): at java.lang.reflect.Method.invokeNative(Native Method) 10-18 16:49:51.222: E/AndroidRuntime(24816): at java.lang.reflect.Method.invoke(Method.java:511) 10-18 16:49:51.222: E/AndroidRuntime(24816): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:789) 10-18 16:49:51.222: E/AndroidRuntime(24816): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:556) 10-18 16:49:51.222: E/AndroidRuntime(24816): at dalvik.system.NativeStart.main(Native Method) 10-18 16:49:51.222: E/AndroidRuntime(24816): Caused by: java.lang.ClassNotFoundException: com.example.gmaps.MainActivity 10-18 16:49:51.222: E/AndroidRuntime(24816): at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:61) 10-18 16:49:51.222: E/AndroidRuntime(24816): at java.lang.ClassLoader.loadClass(ClassLoader.java:501) 10-18 16:49:51.222: E/AndroidRuntime(24816): at java.lang.ClassLoader.loadClass(ClassLoader.java:461) 10-18 16:49:51.222: E/AndroidRuntime(24816): at android.app.Instrumentation.newActivity(Instrumentation.java:1023) 10-18 16:49:51.222: E/AndroidRuntime(24816): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1984) 10-18 16:49:51.222: E/AndroidRuntime(24816): ... 11 more </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload