Note that there are some explanatory texts on larger screens.

plurals
  1. PONo lauch activity found
    text
    copied!<p>i have a problem with my Android Application. The Error occures when i want to run my Application on the emulator or a real device:</p> <pre><code>[2012-03-27 12:01:30 - CallApp] Android Launch! [2012-03-27 12:01:30 - CallApp] adb is running normally. [2012-03-27 12:01:30 - CallApp] No Launcher activity found! [2012-03-27 12:01:30 - CallApp] The launch will only sync the application package on the device! [2012-03-27 12:01:30 - CallApp] Performing sync [2012-03-27 12:01:30 - CallApp] Automatic Target Mode: Several compatible targets. Please select a target device. [2012-03-27 12:01:32 - CallApp] Uploading CallApp.apk onto device 'emulator-5554' [2012-03-27 12:01:33 - CallApp] Installing CallApp.apk... [2012-03-27 12:01:36 - CallApp] Success! [2012-03-27 12:01:36 - CallApp] \CallApp\bin\CallApp.apk installed on device [2012-03-27 12:01:36 - CallApp] Done! </code></pre> <p>I already checked my Manifest-File, but there are the necessary Launcher and MAIN statements:</p> <pre><code>&lt;manifest xmlns:android="http://schemas.android.com/apk/res/android" package="de.CallApp.CallApp" android:versionCode="1" android:versionName="1.0" &gt; &lt;uses-sdk android:minSdkVersion="10" /&gt; &lt;uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /&gt; &lt;uses-permission android:name="android.permission.RECEIVE_SMS" /&gt; &lt;uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /&gt; &lt;uses-permission android:name="android.permission.BATTERY_STATS" /&gt; &lt;uses-permission android:name="android.permission.CALL_PHONE" /&gt; &lt;uses-permission android:name="android.permission.READ_PHONE_STATE" /&gt; &lt;application android:icon="@drawable/ic_launcher" android:label="@string/app_name" &gt; &lt;receiver android:name=".receiver.BootBroadcastReceiver" &gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.BOOT_COMPLETED" /&gt; &lt;/intent-filter&gt; &lt;/receiver&gt; &lt;receiver android:name=".receiver.SmsBroadcastReceiver" &gt; &lt;intent-filter android:priority="99999999" &gt; &lt;action android:name="android.provider.Telephony.SMS_RECEIVED" /&gt; &lt;/intent-filter&gt; &lt;/receiver&gt; &lt;activity android:name="de.CallApp.CallApp.CallAppActivity" android:configChanges="keyboardHidden|orientation" android:label="@string/app_name" &gt; &lt;intent-filter&gt; &lt;category android:name="android.intent.category.LAUNCHER" /&gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;action android:name="android.intent.action.ACTION_BATTERY_LOW" /&gt; &lt;action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;/application&gt; &lt;/manifest&gt; </code></pre>
 

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