Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AndroidManifest.xml « main « src « app - github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 16b7d5b4a5b8e8002a700b66e69dda6bc62efcf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="it.niedermann.nextcloud.deck">

    <uses-permission android:name="com.nextcloud.android.sso" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

    <application
        android:name="it.niedermann.nextcloud.deck.Application"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:hardwareAccelerated="true"
        android:theme="@style/AppTheme"
        android:networkSecurityConfig="@xml/network_security_config"
        tools:ignore="GoogleAppIndexingWarning">

        <activity
            android:name=".ui.MainActivity"
            android:label="@string/app_name_short"
            android:theme="@style/SplashTheme">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

            <meta-data
                android:name="android.app.shortcuts"
                android:resource="@xml/shortcuts" />
            <meta-data
                android:name="android.app.searchable"
                android:resource="@xml/searchable" />
            <meta-data
                android:name="android.app.default_searchable"
                android:value=".ui.MainActivity" />
        </activity>

        <activity
            android:name=".ui.EditActivity"
            android:label="@string/edit"
            android:theme="@style/AppTheme"
            android:parentActivityName="it.niedermann.nextcloud.deck.ui.MainActivity" />

        <activity
            android:name=".ui.SettingsActivity"
            android:label="@string/simple_settings"
            android:theme="@style/AppTheme"
            android:parentActivityName="it.niedermann.nextcloud.deck.ui.MainActivity" />

        <activity
            android:name=".ui.AboutActivity"
            android:label="@string/about"
            android:theme="@style/AppTheme"
            android:parentActivityName="it.niedermann.nextcloud.deck.ui.MainActivity" />

        <activity
            android:name=".ui.exception.ExceptionActivity"
            android:process=":error_activity" />

        <service
            android:name=".ui.tiles.EditCardTileService"
            android:icon="@drawable/ic_app_logo"
            android:label="@string/add_card"
            android:description="@string/add_a_new_card_using_the_button"
            android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
            <intent-filter>
                <action android:name="android.service.quicksettings.action.QS_TILE" />
            </intent-filter>
        </service>
    </application>

</manifest>