mirror of
https://github.com/nextcloud/android.git
synced 2024-12-18 23:11:58 +03:00
e3d57e7c42
Resolves #12920 Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
20 lines
698 B
XML
20 lines
698 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ Nextcloud - Android Client
|
|
~
|
|
~ SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
~ SPDX-FileCopyrightText: 2023 Álvaro Brey <alvaro@alvarobrey.com>
|
|
~ SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only
|
|
-->
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<application>
|
|
<activity
|
|
android:name=".AppScanActivity"
|
|
android:screenOrientation="portrait"
|
|
android:theme="@style/Theme.AppCompat.NoActionBar"
|
|
tools:ignore="LockedOrientationActivity" />
|
|
</application>
|
|
|
|
</manifest>
|