2015-10-01 18:54:20 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="it.niedermann.owncloud.notes"
|
2015-10-21 20:12:58 +03:00
|
|
|
android:versionCode="3"
|
|
|
|
android:versionName="0.3.0">
|
2015-10-01 18:54:20 +03:00
|
|
|
|
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="11"
|
|
|
|
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"
|
2015-10-08 12:58:27 +03:00
|
|
|
android:fullBackupContent="true"
|
2015-10-01 18:54:20 +03:00
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
2015-10-08 12:58:27 +03:00
|
|
|
android:theme="@style/OwnCloud"
|
2015-10-01 18:54:20 +03:00
|
|
|
>
|
2015-10-08 16:08:59 +03:00
|
|
|
<!-- Apps -->
|
2015-10-01 18:54:20 +03:00
|
|
|
<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" >
|
|
|
|
</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>
|
|
|
|
|
2015-10-21 18:47:07 +03:00
|
|
|
<!-- All Notes Widget -->
|
|
|
|
|
|
|
|
<receiver android:name="it.niedermann.owncloud.notes.android.widget.AllNotesWidget">
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<!-- Single Note Widget -->
|
2015-10-08 16:08:59 +03:00
|
|
|
|
|
|
|
<receiver android:name="it.niedermann.owncloud.notes.android.widget.SingleNoteWidget">
|
|
|
|
<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>
|
2015-10-01 18:54:20 +03:00
|
|
|
</manifest>
|