2013-12-27 13:27:58 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.sismics.docs" >
|
|
|
|
|
2014-05-26 22:22:13 +02:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2015-01-08 00:34:57 +01:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2014-05-26 22:22:13 +02:00
|
|
|
|
2013-12-27 13:27:58 +01:00
|
|
|
<application
|
2014-05-26 22:22:13 +02:00
|
|
|
android:name=".MainApplication"
|
2013-12-27 13:27:58 +01:00
|
|
|
android:allowBackup="true"
|
2015-03-24 01:07:32 +01:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2013-12-27 13:27:58 +01:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/AppTheme" >
|
|
|
|
<activity
|
2014-05-26 22:22:13 +02:00
|
|
|
android:name=".activity.LoginActivity"
|
2015-05-04 20:51:32 +02:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/AppThemeDark">
|
2013-12-27 13:27:58 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
2014-05-26 22:22:13 +02:00
|
|
|
android:name=".activity.MainActivity"
|
|
|
|
android:label="@string/app_name"
|
2015-05-07 01:56:03 +02:00
|
|
|
android:launchMode="singleTop"
|
|
|
|
android:windowSoftInputMode="adjustNothing">
|
2014-11-23 00:49:56 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEARCH" />
|
|
|
|
</intent-filter>
|
2015-03-24 01:07:32 +01:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.GET_CONTENT" />
|
|
|
|
<category android:name="android.intent.category.OPENABLE" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="*/*" />
|
|
|
|
</intent-filter>
|
2014-11-23 00:49:56 +01:00
|
|
|
<meta-data android:name="android.app.searchable" android:resource="@xml/searchable" />
|
2013-12-27 13:27:58 +01:00
|
|
|
</activity>
|
2014-11-22 01:09:12 +01:00
|
|
|
<activity
|
2014-11-30 22:02:07 +01:00
|
|
|
android:name=".activity.DocumentViewActivity"
|
|
|
|
android:label="">
|
2014-11-22 01:09:12 +01:00
|
|
|
</activity>
|
2014-11-26 23:30:25 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activity.DocumentEditActivity"
|
2014-11-30 22:02:07 +01:00
|
|
|
android:label="@string/new_document">
|
2014-11-26 23:30:25 +01:00
|
|
|
</activity>
|
2016-03-12 23:25:31 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activity.AuditLogActivity"
|
|
|
|
android:label="@string/latest_activity">
|
|
|
|
</activity>
|
2016-03-13 19:23:52 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activity.UserProfileActivity">
|
|
|
|
</activity>
|
2016-03-20 21:44:53 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activity.GroupProfileActivity">
|
|
|
|
</activity>
|
2014-12-01 22:20:23 +01:00
|
|
|
<activity
|
|
|
|
android:name=".activity.SettingsActivity"
|
|
|
|
android:label="@string/settings">
|
|
|
|
</activity>
|
2014-11-23 00:49:56 +01:00
|
|
|
<provider android:name=".provider.RecentSuggestionsProvider"
|
|
|
|
android:exported="false"
|
|
|
|
android:authorities="com.sismics.docs.provider.RecentSuggestionsProvider" />
|
2015-01-08 00:34:57 +01:00
|
|
|
<service
|
|
|
|
android:name=".service.FileUploadService"
|
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false" >
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.sismics.docs.file.upload"/>
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2013-12-27 13:27:58 +01:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|