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

AndroidManifest.xml « main « src « app - github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19c2d924856c747e069a4e4bd6b7ec9f983077de (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?xml version="1.0" encoding="utf-8"?>
<manifest
    package="it.niedermann.owncloud.notes"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:versionCode="7"
    android:versionName="0.5.2">

    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="23" />

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.USE_CREDENTIALS" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

    <application
        android:allowBackup="true"
        android:fullBackupContent="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/OwnCloud"
        >
        <!-- Apps -->
        <activity
            android:name="it.niedermann.owncloud.notes.android.activity.NotesListViewActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="it.niedermann.owncloud.notes.android.activity.NoteActivity"
            android:label="@string/app_name"
            android:parentActivityName="it.niedermann.owncloud.notes.android.activity.NotesListViewActivity" >
        </activity>
        <activity
            android:name="it.niedermann.owncloud.notes.android.activity.SettingsActivity"
            android:label="@string/app_name"
            android:parentActivityName="it.niedermann.owncloud.notes.android.activity.NotesListViewActivity"
            android:windowSoftInputMode="stateVisible">
        </activity>
        <activity
            android:name="it.niedermann.owncloud.notes.android.activity.CreateNoteActivity"
            android:label="@string/action_create"
            android:windowSoftInputMode="stateVisible" >
            <intent-filter>
                <action android:name="android.intent.action.SEND" />
                <category android:name="android.intent.category.DEFAULT" />
                <data android:mimeType="text/plain" />
            </intent-filter>
        </activity>
        <activity
            android:name="it.niedermann.owncloud.notes.android.activity.EditNoteActivity"
            android:label="@string/menu_edit"
            android:windowSoftInputMode="stateVisible" >
        </activity>
        <activity
            android:name="it.niedermann.owncloud.notes.android.activity.AboutActivity"
            android:label="@string/menu_about"
            android:parentActivityName="it.niedermann.owncloud.notes.android.activity.NotesListViewActivity" >
        </activity>

        <!-- All Notes Widget -->

        <!--receiver
            android:name="it.niedermann.owncloud.notes.android.widget.AllNotesWidget"
            android:label="@string/widget_all_notes_title">
            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
            </intent-filter>

            <meta-data
                android:name="android.appwidget.provider"
                android:resource="@xml/all_notes_widget_provider_info" />
        </receiver>
        <service android:name=".android.widget.AllNotesWidget$StackWidgetService" /-->

        <!-- Single Note Widget -->

        <!--receiver
            android:name="it.niedermann.owncloud.notes.android.widget.SingleNoteWidget"
            android:label="@string/widget_single_note_title">
            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
            </intent-filter>

            <meta-data
                android:name="android.appwidget.provider"
                android:resource="@xml/single_note_widget_provider_info" />
        </receiver>

        <activity
            android:name="it.niedermann.owncloud.notes.android.activity.SelectSingleNoteActivity"
            android:label="@string/action_select_note">
            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
            </intent-filter>
        </activity-->
    </application>
</manifest>