2017-03-28 13:29:59 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
Nextcloud Android client application
|
|
|
|
|
|
|
|
Copyright (C) 2017 Mario Danic
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License version 2,
|
|
|
|
as published by the Free Software Foundation.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-03-28 14:02:02 +03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
package="com.owncloud.android"
|
|
|
|
android:versionCode="10040299"
|
|
|
|
android:versionName="1.4.2">
|
2017-03-28 13:29:59 +03:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:name=".MainApp"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:fullBackupContent="@xml/backup_config"
|
|
|
|
android:theme="@style/Theme.ownCloud.Toolbar"
|
|
|
|
android:manageSpaceActivity="com.owncloud.android.ui.activity.ManageSpaceActivity">
|
2017-04-19 13:35:38 +03:00
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.ModifiedFileDisplayActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/Theme.ownCloud.Toolbar.Drawer">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-03-28 13:29:59 +03:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".authentication.ModifiedAuthenticatorActivity"
|
|
|
|
android:exported="true"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:theme="@style/Theme.ownCloud.noActionBar.Login">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
|
|
|
<data android:scheme="@string/oauth2_redirect_scheme" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.owncloud.android.workaround.accounts.CREATE" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="@string/login_data_own_scheme" android:host="login"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-04-19 13:35:38 +03:00
|
|
|
|
2017-03-28 14:02:02 +03:00
|
|
|
<activity
|
2017-04-19 13:35:38 +03:00
|
|
|
android:name=".ui.activity.FileDisplayActivity"
|
2017-03-28 14:02:02 +03:00
|
|
|
tools:node="remove"/>
|
|
|
|
|
2017-04-19 13:35:38 +03:00
|
|
|
<activity-alias
|
|
|
|
android:name=".ui.activity.FileDisplayActivity"
|
|
|
|
android:targetActivity=".ui.activity.ModifiedFileDisplayActivity"
|
|
|
|
tools:replace="android:targetActivity"/>
|
|
|
|
|
2017-03-28 14:02:02 +03:00
|
|
|
<activity-alias
|
|
|
|
android:name=".authentication.AuthenticatorActivity"
|
|
|
|
android:targetActivity=".authentication.ModifiedAuthenticatorActivity"
|
|
|
|
tools:replace="android:targetActivity"/>
|
2017-03-28 13:29:59 +03:00
|
|
|
|
2017-04-19 13:35:38 +03:00
|
|
|
|
2017-03-28 13:29:59 +03:00
|
|
|
<service
|
|
|
|
android:name=".services.firebase.NCFirebaseMessagingService">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
|
|
|
<service
|
|
|
|
android:name=".services.firebase.NCFirebaseInstanceIDService">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|