mirror of
https://github.com/nextcloud/android.git
synced 2024-12-22 16:54:33 +03:00
a3cb17a829
fix wrong class cast exception message Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
21 lines
942 B
XML
21 lines
942 B
XML
<manifest xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<!-- Allows unlocking your device and activating its screen so UI tests can succeed -->
|
|
<uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>
|
|
<uses-permission android:name="android.permission.WAKE_LOCK"/>
|
|
|
|
<!-- Allows for storing and retrieving screenshots -->
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
|
|
<!-- Allows changing locales -->
|
|
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION"
|
|
tools:ignore="ProtectedPermissions" />
|
|
|
|
<application
|
|
android:testOnly="false"
|
|
tools:ignore="GoogleAppIndexingWarning">
|
|
|
|
<activity android:name="com.nextcloud.client.TestActivity" />
|
|
</application>
|
|
</manifest>
|