Created
March 30, 2019 17:52
-
-
Save corneliouzbett/c0bcce8d5a5042b092a6059f42804e2c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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.corneliouz.quicktasks"> | |
<application | |
android:allowBackup="true" | |
android:fullBackupContent="@xml/device" | |
android:icon="@mipmap/ic_launcher" | |
android:label="@string/app_name" | |
android:roundIcon="@mipmap/ic_launcher" | |
android:supportsRtl="true" | |
android:theme="@style/AppTheme.Launcher" | |
tools:ignore="GoogleAppIndexingWarning"> | |
<activity android:name=".MainActivity"> | |
<intent-filter> | |
<action android:name="android.intent.action.MAIN"/> | |
<category android:name="android.intent.category.LAUNCHER"/> | |
</intent-filter> | |
</activity> | |
<activity | |
android:name=".AddTodoItem" | |
android:parentActivityName=".MainActivity"> | |
<!-- Parent activity meta-data to support 4.0 and lower --> | |
<meta-data | |
android:name="android.support.PARENT_ACTIVITY" | |
android:value=".MainActivity"/> | |
</activity> | |
<activity | |
android:name=".DetailTodoItem" | |
android:parentActivityName=".MainActivity"> | |
<!-- Parent activity meta-data to support 4.0 and lower --> | |
<meta-data | |
android:name="android.support.PARENT_ACTIVITY" | |
android:value=".MainActivity"/> | |
</activity> | |
<receiver android:name=".Utils.NotificationPublisher"/> | |
<activity android:name=".AboutActivity" | |
android:parentActivityName=".MainActivity"> | |
<!-- Parent activity meta-data to support 4.0 and lower --> | |
<meta-data | |
android:name="android.support.PARENT_ACTIVITY" | |
android:value=".MainActivity"/> | |
</activity> | |
</application> | |
</manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment