ppyordanov / Dynamic-Noise-and-Pollution-Map

A dynamically generated University of Glasgow noise and pollution campus map via the innovative Smart Citizen Kit developed in Barcelona, Spain by FabLab.
0 stars 0 forks source link

Android Permissions #54

Closed ppyordanov closed 9 years ago

ppyordanov commented 9 years ago

In order to track geolocation, the client Android app needs to have received permissions from the device it has been installed on. This needs to be configured.

ppyordanov commented 9 years ago

Considering the need for location tracking, the app would require the following permissions:

    <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 android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

Those permissions will let the application use the device GPS sensor and Internet resources as well as check phone connectivity immediately after the client has been started.

NOTE: additional permissions may be required.

ppyordanov commented 9 years ago

This task is relevant to #50 .

ppyordanov commented 9 years ago

This task has been completed and can be closed now.