|
|
|
@ -19,7 +19,8 @@
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
package="net.micode.notes"
|
|
|
|
|
android:versionCode="1"
|
|
|
|
|
android:versionName="0.1" >
|
|
|
|
|
android:versionName="0.1"
|
|
|
|
|
tools:ignore="GradleOverrides">
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
|
|
|
|
@ -33,27 +34,37 @@
|
|
|
|
|
|
|
|
|
|
<application
|
|
|
|
|
android:icon="@drawable/icon_app"
|
|
|
|
|
android:label="@string/app_name" >
|
|
|
|
|
android:label="@string/app_name">
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".ui.NotesListActivity"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation|navigation"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:theme="@style/NoteTheme"
|
|
|
|
|
android:theme="@style/Theme.AppCompat.Light.DarkActionBar"
|
|
|
|
|
android:uiOptions="splitActionBarWhenNarrow"
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:windowSoftInputMode="adjustPan" >
|
|
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.SEARCH" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.app.searchable"
|
|
|
|
|
android:resource="@xml/searchable" />
|
|
|
|
|
<meta-data android:name="android.app.default_searchable"
|
|
|
|
|
android:value=".ui.NotesListActivity" />
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:name=".ui.NoteEditActivity"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:theme="@style/NoteTheme" >
|
|
|
|
|
android:theme="@style/Theme.AppCompat.Light.DarkActionBar" >
|
|
|
|
|
|
|
|
|
|
<intent-filter android:scheme="http"
|
|
|
|
|
tools:ignore="AppLinkUrlError">
|
|
|
|
@ -83,9 +94,11 @@
|
|
|
|
|
<provider
|
|
|
|
|
android:name="net.micode.notes.data.NotesProvider"
|
|
|
|
|
android:authorities="micode_notes"
|
|
|
|
|
android:multiprocess="true" />
|
|
|
|
|
android:multiprocess="true"
|
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
|
|
|
|
<receiver
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:name=".widget.NoteWidgetProvider_2x"
|
|
|
|
|
android:label="@string/app_widget2x2" >
|
|
|
|
|
<intent-filter>
|
|
|
|
@ -99,6 +112,7 @@
|
|
|
|
|
android:resource="@xml/widget_2x_info" />
|
|
|
|
|
</receiver>
|
|
|
|
|
<receiver
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:name=".widget.NoteWidgetProvider_4x"
|
|
|
|
|
android:label="@string/app_widget4x4" >
|
|
|
|
|
|
|
|
|
@ -113,18 +127,20 @@
|
|
|
|
|
android:resource="@xml/widget_4x_info" />
|
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
|
|
<receiver android:name=".ui.AlarmInitReceiver" >
|
|
|
|
|
<receiver android:name=".ui.AlarmInitReceiver" android:exported="false">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
|
|
<receiver
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:name="net.micode.notes.ui.AlarmReceiver"
|
|
|
|
|
android:process=":remote" >
|
|
|
|
|
</receiver>
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:name=".ui.AlarmAlertActivity"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:launchMode="singleInstance"
|
|
|
|
@ -132,10 +148,12 @@
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:name="net.micode.notes.ui.NotesPreferenceActivity"
|
|
|
|
|
android:label="@string/preferences_title"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:theme="@android:style/Theme.Holo.Light" >
|
|
|
|
|
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
<service
|
|
|
|
|