Skip to content

Commit

Permalink
set exported to true in some activities and services
Browse files Browse the repository at this point in the history
  • Loading branch information
anangkur committed Dec 11, 2023
1 parent 29bd0d7 commit 12dc63c
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?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.anangkur.mediku">

<uses-permission android:name="android.permission.INTERNET" />
Expand All @@ -15,7 +16,8 @@
android:roundIcon="@drawable/ic_mediku_512"
android:supportsRtl="true"
android:theme="@style/MaterialTheme"
android:usesCleartextTraffic="true">
android:usesCleartextTraffic="true"
tools:targetApi="m">
<activity android:name="com.anangkur.mediku.feature.view.about.AboutActivity" />
<activity android:name="com.anangkur.mediku.feature.view.mens.menstrualEdit.MenstrualEditActivity" />
<activity android:name="com.anangkur.mediku.feature.view.mens.menstrual.MenstrualActivity" />
Expand All @@ -32,7 +34,9 @@
<activity android:name="com.anangkur.mediku.feature.view.profile.userProfile.ProfileActivity" />
<activity android:name="com.anangkur.mediku.feature.view.auth.signUp.SignUpActivity" />
<activity android:name="com.anangkur.mediku.feature.view.auth.signIn.SignInActivity" />
<activity android:name="com.anangkur.mediku.feature.view.splash.SplashActivity">
<activity
android:name="com.anangkur.mediku.feature.view.splash.SplashActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand All @@ -46,7 +50,8 @@
<service
android:name="com.anangkur.mediku.feature.notification.MessagingService"
android:permission="com.google.android.c2dm.permission.SEND"
android:stopWithTask="false">
android:stopWithTask="false"
android:exported="true">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
Expand Down

0 comments on commit 12dc63c

Please sign in to comment.