Note that there are some explanatory texts on larger screens.

plurals
  1. POAndroid Exception Intent, activity not found
    primarykey
    data
    text
    <p>I am currently using android studio and I have put in my activities in the manifest file and I believe I am calling it correctly. I keep getting this error though:</p> <p>Caused by: <code>android.content.ActivityNotFoundException: Unable to find explicit activity class {/com.ca.android.easycall.customers1}; have you declared this activity in your AndroidManifest.xml?</code></p> <p>This is my Call:</p> <pre><code>Intent actCustomers1 = new Intent(this, customers1.class); startActivity(actCustomers1); </code></pre> <p>Here is my manifest:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.ca.android.easycall" android:versionCode="1" android:versionName="1.0" &gt; &lt;permission android:name="android.permission.CALL_PHONE" /&gt; &lt;uses-permission android:name="android.permission.CALL_PHONE" /&gt; &lt;uses-sdk android:minSdkVersion="7" android:targetSdkVersion="18" /&gt; &lt;application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" &gt; &lt;activity android:name="com.ca.android.easycall.MainActivity" android:label="@string/app_name" &gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;category android:name="android.intent.category.LAUNCHER" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;activity android:name=".customers1" android:label="@string/title_activity_customers1" &gt; &lt;/activity&gt; &lt;activity android:name=".customers2" android:label="@string/title_activity_customers2" &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.
    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