blob: 9ac597fd95ef95a1de79e22cd8f6daf529bd5e6a [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.named_data.nfd" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_LOGS" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<application
android:allowBackup="true"
android:icon="@drawable/nfd_app"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name=".service.NfdService"
android:process="net.named_data.nfd.service.NfdService"
android:icon="@drawable/ic_launcher"
android:label="@string/service_name"
android:exported="true" >
<intent-filter>
<action android:name="net.named_data.nfd.START_NFD_SERVICE" />
</intent-filter>
</service>
</application>
</manifest>