Get rid of android:permission="android.permission.ACCESS_FINE_LOCATION"
from <application> -- you are declaring that anything that tries to
launch your application needs ACCESS_FINE_LOCATION.

On Fri, Sep 30, 2011 at 12:54 PM, Jean-Michel
<jeanmichel.caz...@gmail.com> wrote:
> Ok, I was able to reproduce the problem in the emaulator.
>
> It only happens on 2.3.3 (or from) and only with an installed app (app
> pushed from Eclipse is OK).
>
> Still have no idea where it comes from...
>
> Should I add the individual permissiopns on the activities?
>
> Here is my permission file.
>
> <?xml version="1.0" encoding="utf-8"?>
> <manifest xmlns:android="http://schemas.android.com/apk/res/android";
>      android:versionCode="1"
>      package="com.droidfa" android:versionName="0.1a">
>    <uses-sdk android:minSdkVersion="8"/>
>    <uses-permission
> android:name="android.permission.ACCESS_FINE_LOCATION" />
>    <uses-permission
> android:name="android.permission.ACCESS_COARSE_LOCATION" />
>    <uses-permission
> android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS"></
> uses-permission>
>    <uses-permission
> android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-
> permission>
>    <uses-permission android:name="android.permission.WAKE_LOCK"></
> uses-permission>
>
>    <application android:icon="@drawable/icon" android:label="@string/
> app_name" android:description="@string/app_description"
> android:permission="android.permission.ACCESS_FINE_LOCATION"
> android:theme="@android:style/Theme.Black">
>        <activity android:label="@string/app_name"
> android:name="com.droidfa.ControlPanel"
> android:launchMode="singleTask">
>            <intent-filter>
>                <action android:name="android.intent.action.MAIN" />
>                <category
> android:name="android.intent.category.LAUNCHER" />
>            </intent-filter>
>        </activity>
>        <service android:description="@string/
> nav_manager_notification_text" android:name="com.droidfa.NavManager"
> android:label="@string/nav_manager_notification_title"></service>
>        <activity android:name="com.droidfa.Preferences"></activity>
>        <activity android:name="com.droidfa.OverviewAcitivity"></
> activity>
>        <activity android:name="com.droidfa.HsiActivity"></activity>
>        <activity
> android:name="com.droidfa.navigation.NavigationFPLoader"></activity>
>        <activity android:name="com.droidfa.MovingMapActivity"></
> activity>
>                <activity android:name="com.droidfa.FMSActivity"></activity>
>        <activity android:name="com.droidfa.SearchPointActivity"
>                android:excludeFromRecents="true"></activity>
>        <activity android:name="com.droidfa.ImportPointsActivity"
>                android:theme="@android:style/Theme.Dialog"
>                android:excludeFromRecents="true"></activity>
>        <service android:name="com.droidfa.db.DbPointLoader"></
> service>
>
>    </application>
> </manifest>
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>



-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://github.com/commonsguy
http://commonsware.com/blog | http://twitter.com/commonsguy

_The Busy Coder's Guide to *Advanced* Android Development_ Version 2.0
Available!

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

Reply via email to