2017-12-15 15:54:10 +03:00
|
|
|
<manifest xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
2017-09-28 14:53:37 +03:00
|
|
|
<!-- 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 changing locales -->
|
2018-04-03 19:38:03 +03:00
|
|
|
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION"
|
|
|
|
tools:ignore="ProtectedPermissions" />
|
2017-09-28 14:53:37 +03:00
|
|
|
|
|
|
|
<application
|
2017-12-15 15:54:10 +03:00
|
|
|
android:testOnly="false"
|
2020-07-24 14:12:31 +03:00
|
|
|
tools:ignore="GoogleAppIndexingWarning">
|
2023-01-12 14:58:31 +03:00
|
|
|
<activity
|
|
|
|
android:name="com.nextcloud.test.InjectionTestActivity"
|
|
|
|
android:exported="false" />
|
2023-01-12 11:36:27 +03:00
|
|
|
<activity android:name="com.nextcloud.test.TestActivity" />
|
2020-07-24 14:12:31 +03:00
|
|
|
</application>
|
2017-12-13 14:13:13 +03:00
|
|
|
</manifest>
|