blob: 8ce237ca6ef29ae8083139fcfec864c94d04054a [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" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
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>