mirror of
https://github.com/FossifyOrg/Notes.git
synced 2026-06-12 02:30:48 -04:00
94 lines
3.4 KiB
XML
94 lines
3.4 KiB
XML
<?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="com.simplemobiletools.notes"
|
|
android:installLocation="auto">
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
<uses-permission
|
|
android:name="android.permission.USE_FINGERPRINT"
|
|
tools:node="remove"/>
|
|
|
|
<application
|
|
android:name=".App"
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_launcher_name"
|
|
android:roundIcon="@mipmap/ic_launcher"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme">
|
|
|
|
<activity
|
|
android:name=".activities.SplashActivity"
|
|
android:theme="@style/SplashTheme">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".activities.MainActivity">
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.SEND"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
<data android:mimeType="text/*"/>
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
<data android:mimeType="text/*"/>
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".activities.WidgetConfigureActivity"
|
|
android:screenOrientation="portrait"
|
|
android:theme="@style/MyWidgetConfigTheme">
|
|
<intent-filter>
|
|
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name="com.simplemobiletools.commons.activities.AboutActivity"
|
|
android:label="@string/about"
|
|
android:parentActivityName=".activities.MainActivity"/>
|
|
|
|
<activity
|
|
android:name="com.simplemobiletools.commons.activities.CustomizationActivity"
|
|
android:label="@string/customize_colors"
|
|
android:parentActivityName=".activities.SettingsActivity"/>
|
|
|
|
<activity
|
|
android:name="com.simplemobiletools.commons.activities.LicenseActivity"
|
|
android:label="@string/third_party_licences"
|
|
android:parentActivityName="com.simplemobiletools.commons.activities.AboutActivity"/>
|
|
|
|
<activity
|
|
android:name=".activities.SettingsActivity"
|
|
android:label="@string/settings"
|
|
android:parentActivityName=".activities.MainActivity"/>
|
|
|
|
<service
|
|
android:name=".services.WidgetService"
|
|
android:permission="android.permission.BIND_REMOTEVIEWS"/>
|
|
|
|
<receiver
|
|
android:name=".helpers.MyWidgetProvider"
|
|
android:icon="@drawable/img_widget_preview">
|
|
<intent-filter>
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
android:name="android.appwidget.provider"
|
|
android:resource="@xml/widget_info"/>
|
|
</receiver>
|
|
</application>
|
|
</manifest>
|