2015-08-05 19:48:41 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-10-08 14:11:45 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
package="ch.dissem.apps.abit">
|
2015-08-05 19:48:41 +02:00
|
|
|
|
2015-10-08 14:11:45 +02:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
|
|
|
|
<uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
|
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
|
2015-08-05 19:48:41 +02:00
|
|
|
|
|
|
|
<application
|
2015-10-08 14:11:45 +02:00
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/AppTheme">
|
2015-08-05 19:48:41 +02:00
|
|
|
<activity
|
2015-10-08 14:11:45 +02:00
|
|
|
android:name=".MessageListActivity"
|
|
|
|
android:label="@string/app_name">
|
2015-08-05 19:48:41 +02:00
|
|
|
<intent-filter>
|
2015-10-08 14:11:45 +02:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2015-08-05 19:48:41 +02:00
|
|
|
|
2015-10-08 14:11:45 +02:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2015-08-05 19:48:41 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
2015-10-08 14:11:45 +02:00
|
|
|
android:name=".MessageDetailActivity"
|
|
|
|
android:label="@string/title_message_detail"
|
|
|
|
android:parentActivityName=".MessageListActivity"
|
|
|
|
tools:ignore="UnusedAttribute">
|
2015-08-05 19:48:41 +02:00
|
|
|
<meta-data
|
2015-10-08 14:11:45 +02:00
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".MessageListActivity" />
|
2015-08-05 19:48:41 +02:00
|
|
|
</activity>
|
2015-09-11 07:59:39 +02:00
|
|
|
<activity
|
2015-10-08 14:11:45 +02:00
|
|
|
android:name=".SubscriptionDetailActivity"
|
|
|
|
android:label="@string/title_subscription_detail"
|
|
|
|
android:parentActivityName=".MessageListActivity"
|
|
|
|
tools:ignore="UnusedAttribute">
|
2015-09-11 07:59:39 +02:00
|
|
|
<meta-data
|
2015-10-08 14:11:45 +02:00
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".MessageListActivity" />
|
2015-09-11 07:59:39 +02:00
|
|
|
</activity>
|
2015-08-14 17:25:05 +02:00
|
|
|
<activity
|
2015-10-08 14:11:45 +02:00
|
|
|
android:name=".ComposeMessageActivity"
|
|
|
|
android:label="Compose"
|
|
|
|
android:parentActivityName=".MessageListActivity">
|
2015-08-14 17:25:05 +02:00
|
|
|
<meta-data
|
2015-10-08 14:11:45 +02:00
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".MessageListActivity" />
|
2015-08-14 17:25:05 +02:00
|
|
|
|
|
|
|
<intent-filter>
|
2015-10-08 14:11:45 +02:00
|
|
|
<action android:name="android.intent.action.SENDTO" />
|
2015-08-14 17:25:05 +02:00
|
|
|
|
2015-10-08 14:11:45 +02:00
|
|
|
<data android:scheme="bitmessage" />
|
|
|
|
<data android:scheme="bitmsg" />
|
|
|
|
<data android:scheme="bm" />
|
2015-08-14 17:25:05 +02:00
|
|
|
|
2015-10-08 14:11:45 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2015-08-14 17:25:05 +02:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
2015-10-08 14:11:45 +02:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
2015-08-14 17:25:05 +02:00
|
|
|
|
2015-10-08 14:11:45 +02:00
|
|
|
<data android:mimeType="text/plain" />
|
2015-08-14 17:25:05 +02:00
|
|
|
|
2015-10-08 14:11:45 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2015-08-14 17:25:05 +02:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
2015-10-08 14:11:45 +02:00
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
2015-08-14 17:25:05 +02:00
|
|
|
|
2015-10-08 14:11:45 +02:00
|
|
|
<data android:mimeType="text/plain" />
|
2015-08-14 17:25:05 +02:00
|
|
|
|
2015-10-08 14:11:45 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2015-08-14 17:25:05 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2015-08-05 19:48:41 +02:00
|
|
|
<activity
|
2015-10-08 14:11:45 +02:00
|
|
|
android:name=".SettingsActivity"
|
|
|
|
android:label="@string/settings"
|
|
|
|
android:parentActivityName=".MessageListActivity">
|
2015-08-05 19:48:41 +02:00
|
|
|
<intent-filter>
|
2015-10-08 14:11:45 +02:00
|
|
|
<action android:name="android.intent.action.MANAGE_NETWORK_USAGE" />
|
2015-08-14 17:25:05 +02:00
|
|
|
|
2015-10-08 14:11:45 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2015-08-05 19:48:41 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2015-08-14 17:25:05 +02:00
|
|
|
<activity
|
2015-10-08 14:11:45 +02:00
|
|
|
android:name=".OpenBitmessageLinkActivity"
|
|
|
|
android:label="@string/title_activity_open_bitmessage_link"
|
|
|
|
android:theme="@style/Theme.AppCompat.Light.Dialog">
|
2015-08-14 17:25:05 +02:00
|
|
|
<intent-filter>
|
2015-10-08 14:11:45 +02:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2015-08-14 17:25:05 +02:00
|
|
|
|
2015-10-08 14:11:45 +02:00
|
|
|
<data android:scheme="bitmessage" />
|
|
|
|
<data android:scheme="bitmsg" />
|
|
|
|
<data android:scheme="bm" />
|
2015-08-14 17:25:05 +02:00
|
|
|
|
2015-10-08 14:11:45 +02:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2015-08-14 17:25:05 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2015-10-23 22:40:09 +02:00
|
|
|
<service android:name=".synchronization.BitmessageService" />
|
2015-10-08 14:11:45 +02:00
|
|
|
|
2015-10-12 14:44:01 +02:00
|
|
|
<!-- Synchronization -->
|
2015-10-08 14:11:45 +02:00
|
|
|
<provider
|
|
|
|
android:name=".synchronization.StubProvider"
|
2015-10-12 14:44:01 +02:00
|
|
|
android:authorities="ch.dissem.apps.abit.provider"
|
2015-10-08 14:11:45 +02:00
|
|
|
android:exported="false"
|
|
|
|
android:syncable="true" />
|
|
|
|
<service android:name=".synchronization.AuthenticatorService">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.accounts.AccountAuthenticator" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
|
|
android:name="android.accounts.AccountAuthenticator"
|
|
|
|
android:resource="@xml/authenticator" />
|
|
|
|
</service>
|
|
|
|
<service
|
|
|
|
android:name=".synchronization.SyncService"
|
2015-10-21 16:43:13 +02:00
|
|
|
android:exported="true">
|
2015-10-08 14:11:45 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.content.SyncAdapter"/>
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data android:name="android.content.SyncAdapter"
|
|
|
|
android:resource="@xml/syncadapter" />
|
|
|
|
</service>
|
2015-08-05 19:48:41 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|