UnifiedNlp/sample/AndroidManifest.xml
mar-v-in 1f06a663cc Backends should require ACCESS_COARSE_LOCATION permission
Added this to example, as well as various fixes
2014-03-11 19:51:23 +01:00

55 lines
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest
package="org.microg.nlp.api.sample"
android:versionCode="1"
android:versionName="0.0.1"
xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk
android:targetSdkVersion="19"
android:minSdkVersion="10" />
<application
android:allowBackup="false"
android:icon="@drawable/icon"
android:label="@string/app_name">
<service
android:name=".SampleBackendService"
android:exported="true"
android:permission="android.permission.ACCESS_COARSE_LOCATION"
android:label="NLPV2-Sample">
<intent-filter>
<action android:name="org.microg.nlp.LOCATION_BACKEND" />
</intent-filter>
</service>
<service
android:name=".SecondSampleService"
android:exported="true"
android:permission="android.permission.ACCESS_COARSE_LOCATION"
android:label="NLPV2-Second">
<intent-filter>
<action android:name="org.microg.nlp.LOCATION_BACKEND" />
</intent-filter>
<meta-data
android:name="org.microg.nlp.BACKEND_SETTINGS_ACTIVITY"
android:value="org.microg.nlp.api.sample.SecondSettings" />
</service>
<activity
android:name=".SecondSettings"
android:exported="true"
android:label="Second Settings Activity" />
<service
android:name=".ThirdSampleService"
android:exported="true"
android:permission="android.permission.ACCESS_COARSE_LOCATION"
android:label="NLPV2-Random">
<intent-filter>
<action android:name="org.microg.nlp.LOCATION_BACKEND" />
</intent-filter>
</service>
</application>
</manifest>