Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6196007
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T03:34:06+00:00 2026-05-24T03:34:06+00:00

I have this error . even I have set the persmmissinos for GPS >>

  • 0

I have this error . even I have set the persmmissinos for GPS >> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

07-29 10:29:10.468: ERROR/AndroidRuntime(759): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.adhamenaya.android/com.adhamenaya.android.MapApp}: java.lang.SecurityException: Requires ACCESS_FINE_LOCATION permission
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2268)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2284)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at android.app.ActivityThread.access$1800(ActivityThread.java:112)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1692)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at android.os.Handler.dispatchMessage(Handler.java:99)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at android.os.Looper.loop(Looper.java:123)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at android.app.ActivityThread.main(ActivityThread.java:3948)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at java.lang.reflect.Method.invokeNative(Native Method)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at java.lang.reflect.Method.invoke(Method.java:521)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:782)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:540)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at dalvik.system.NativeStart.main(Native Method)
07-29 10:29:10.468: ERROR/AndroidRuntime(759): Caused by: java.lang.SecurityException: Requires ACCESS_FINE_LOCATION permission
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at android.os.Parcel.readException(Parcel.java:1234)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at android.os.Parcel.readException(Parcel.java:1222)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at android.location.ILocationManager$Stub$Proxy.requestLocationUpdates(ILocationManager.java:512)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at android.location.LocationManager._requestLocationUpdates(LocationManager.java:710)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at android.location.LocationManager.requestLocationUpdates(LocationManager.java:629)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at com.adhamenaya.android.MapApp.initMap(MapApp.java:37)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at com.adhamenaya.android.MapApp.onCreate(MapApp.java:25)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1123)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2231)
07-29 10:29:10.468: ERROR/AndroidRuntime(759):     ... 11 more

Edit : this is the AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.adhamenaya.android"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:icon="@drawable/icon" android:label="@string/app_name">
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
        <activity android:name=".MapApp"
                  android:label="@string/app_name"
                  android:theme="@android:style/Theme.NoTitleBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>


    <uses-library  android:name="com.google.android.maps" />



    </application>


</manifest> 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T03:34:07+00:00Added an answer on May 24, 2026 at 3:34 am

    You need to put your uses-permission tags before your application tag in your manifest

    EDIT: for a full list of tags and what order they must appear, see http://developer.android.com/guide/topics/manifest/manifest-intro.html

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I get this JS error: jquery-1.5.1.min.js:16Uncaught TypeError: Cannot set property '_renderItem' of undefined d.d.extend._Deferred.f.resolveWithjquery-1.5.1.min.js:16
I do not have a %CLASSPATH% set up. As I understand, this should not
I'm really struggling to understand why I'm getting this error. I'm getting it referring
I have this bit of javascript: var jsonString = some string of json; $.post('proxy.php',
I have this function: function myFunc() { $conn=new mysqli('localhost','root','','myDb'); $conn->query('BEGIN'); $query=SELECT events_participants.userid,(SELECT COUNT(*) FROM
Additional information: Object reference not set to an instance of an object. I have
So, i have this code that seems to be doing the mechanical work correctly,
I have a Drupal installation that previously worked perfectly on my localhost. However, now,
I am receiving a 'Length of the data to decrypt is invalid.' error when
Today I managed to recreate the farms with Scalr.net and apparently after a few

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.