Note that there are some explanatory texts on larger screens.

plurals
  1. POWhy can't I see my app in the avd app menu?
    primarykey
    data
    text
    <p>My app successfully installs on my AVD, I can confirm it was installed by seeing it in the app manager, but I can never access it because I can not see it in the app menu</p> <p>In the console I always get the messages</p> <blockquote> <p>[2011-12-27 10:39:28 - WhosurSensei] No Launcher activity found!</p> <p>[2011-12-27 10:39:28 - WhosurSensei] The launch will only sync the application package on the device!</p> </blockquote> <p>my opening java page</p> <pre><code>package com.thepackage.WhosurSensei; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.Button; public class WhosurSenseiActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); Button Button1 = (Button) findViewById(R.id.firstpagebutton); Button1.setOnClickListener(new View.OnClickListener() { public void onClick(View v) { startActivity(new Intent(WhosurSenseiActivity.this, MainMenu.class)); } }); } @Override protected void onPause() { super.onPause(); } } </code></pre> <p>my androidmanifest page </p> <pre><code>&lt;uses-sdk android:minSdkVersion="8" /&gt; &lt;application android:icon="@drawable/splash" android:label="@string/app_name" &gt; &lt;activity android:label="@string/app_name" android:name=".WhosurSenseiActivity" &gt; &lt;intent-filter &gt; &lt;action android:name="com.thepackage.WhosurSensei.MAIN" /&gt; &lt;category android:name="android.intent.category.LAUNCHER" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;activity android:label="@string/app_name" android:name=".MainMenu" &gt; &lt;/activity&gt; &lt;/application&gt; &lt;/manifest&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    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.
    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