UnifiedNlp/sample/AndroidManifest.xml
2014-03-05 21:31:46 +01:00

18 lines
491 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.microg.nlp.api.sample">
<uses-sdk android:minSdkVersion="19" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name">
<service
android:name=".SampleBackendService"
android:exported="true">
<intent-filter>
<action android:name="org.microg.nlp.LOCATION_BACKEND" />
</intent-filter>
</service>
</application>
</manifest>