2016-03-03 17:46:31 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-03-29 19:38:50 +02:00
|
|
|
package="com.github.dfa.diaspora_android">
|
2016-03-03 17:46:31 +01: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" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
2016-03-23 22:26:23 +01:00
|
|
|
android:fullBackupContent="true"
|
2016-03-03 17:46:31 +01:00
|
|
|
android:icon="@drawable/ic_launcher"
|
2016-03-29 19:38:50 +02:00
|
|
|
android:name="com.github.dfa.diaspora_android.App"
|
2016-03-03 17:46:31 +01:00
|
|
|
android:label="@string/app_name"
|
2016-03-23 21:07:53 +01:00
|
|
|
android:theme="@style/AppTheme" >
|
2016-03-03 17:46:31 +01:00
|
|
|
<activity
|
2016-03-29 19:38:50 +02:00
|
|
|
android:name="com.github.dfa.diaspora_android.activity.SplashActivity"
|
2016-03-03 17:46:31 +01:00
|
|
|
android:launchMode="singleInstance"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:theme="@style/Theme.AppCompat.NoActionBar">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
2016-03-29 19:38:50 +02:00
|
|
|
android:name="com.github.dfa.diaspora_android.activity.PodsActivity"
|
2016-03-03 17:46:31 +01:00
|
|
|
android:launchMode="singleInstance"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/title_activity_pods"
|
|
|
|
android:screenOrientation="portrait"
|
|
|
|
android:windowSoftInputMode="stateHidden" >
|
|
|
|
</activity>
|
|
|
|
<activity
|
2016-03-29 19:38:50 +02:00
|
|
|
android:name="com.github.dfa.diaspora_android.activity.MainActivity"
|
2016-03-03 17:46:31 +01:00
|
|
|
android:launchMode="singleInstance"
|
|
|
|
android:windowSoftInputMode="adjustResize"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
|
|
|
android:label="@string/diaspora">
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
<activity
|
2016-03-29 19:38:50 +02:00
|
|
|
android:name="com.github.dfa.diaspora_android.activity.ShareActivity"
|
2016-03-03 17:46:31 +01:00
|
|
|
android:launchMode="singleInstance"
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
android:label="@string/new_post"
|
2016-03-19 10:52:12 +01:00
|
|
|
android:theme="@style/AppTheme.NoActionBar"
|
2016-03-03 17:46:31 +01:00
|
|
|
android:screenOrientation="portrait" >
|
2016-04-12 11:54:43 +02:00
|
|
|
<intent-filter android:label="@string/new_post"
|
2016-03-19 23:45:09 +01:00
|
|
|
android:icon="@drawable/ic_launcher">
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="text/*" />
|
|
|
|
<data android:mimeType="image/*" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
2016-03-03 17:46:31 +01:00
|
|
|
<service
|
2016-03-29 19:38:50 +02:00
|
|
|
android:name="com.github.dfa.diaspora_android.task.GetPodsService"
|
2016-03-03 17:46:31 +01:00
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false" >
|
|
|
|
</service>
|
|
|
|
|
|
|
|
</application>
|
|
|
|
</manifest>
|