Skip to content

Commit

Permalink
AndroidManifest.xml updated
Browse files Browse the repository at this point in the history
  • Loading branch information
amarradi authored and sealor committed Jul 7, 2023
1 parent 6e2ee8e commit 53cb87c
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.ubuntix.android.birthdayreminder"
android:versionCode="9"
android:versionName="1.0.0">
package="de.ubuntix.android.birthdayreminder">

<uses-permission android:name="android.permission.READ_CONTACTS"/>
<uses-permission android:name="android.permission.WRITE_CONTACTS"/>
Expand All @@ -13,21 +11,21 @@
android:label="@string/app_name">
<activity
android:name=".BirthdayReminder"
android:label="@string/app_name">
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity
android:name=".BirthdayEditor"
android:label="@string/app_name"/>
android:name=".BirthdayEditor" />
<activity
android:name=".PreferenceWindow"
android:label="@string/preferences_name"/>

<receiver android:name=".service.BirthdayBroadcastReceiver">
<receiver android:name=".service.BirthdayBroadcastReceiver"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
Expand Down

0 comments on commit 53cb87c

Please sign in to comment.