When I Click the icon to run the app. An error occurs saying
"Application is not installed on your phone"
In logcat I see:
04-21 22:00:17.711: ERROR/Launcher(128): Launcher does not have the
permission to launch Intent { act=android.intent.action.MAIN
cat=[android.intent.category.LAUNCHER] flg=0x10200000
cmp=com.es.tele/.tele bnds=[163,316][237,395] }. Make sure to create a
MAIN intent-filter for the corresponding activity or use the exported
attribute for this activity. tag=ShortcutInfo(title=Tele)
intent=Intent { act=android.intent.action.MAIN
cat=[android.intent.category.LAUNCHER] flg=0x10200000
cmp=com.es.tele/.tele bnds=[163,316][237,395] }
04-21 22:00:17.711: ERROR/Launcher(128): java.lang.SecurityException:
Permission Denial: starting Intent { act=android.intent.action.MAIN
cat=[android.intent.category.LAUNCHER] flg=0x10200000
cmp=com.es.tele/.tele bnds=[163,316][237,395] } from
ProcessRecord{4069d0b8 128:com.android.launcher/10013} (pid=128,
uid=10013) requires android.permission.INTERNET


But I have INTERNET permission in the manifiest:


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android";
      package="com.es.tele"
      android:versionCode="1"
      android:versionName="1.0">
<uses-permission
android:name="android.permission.CHANGE_NETWORK_STATE"></uses-
permission>
<uses-permission android:name="android.permission.INTERNET"></uses-
permission>

    <application android:icon="@drawable/icon" android:label="@string/
app_name" android:permission="android.permission.INTERNET">
        <activity android:name=".tele"
                          android:windowSoftInputMode="adjustPan"
                  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:permission="android.permission.INTERNET"
android:name=".programacion" android:label="@string/subapp"/>
    </application>
</manifest>

Could you help me please?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to