Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Commit

Permalink
fix: set exported flag to true for SDK 12
Browse files Browse the repository at this point in the history
- LEARNER-9176
  • Loading branch information
omerhabib26 committed Dec 9, 2022
1 parent 157690e commit ced5c9d
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions OpenEdXMobile/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@
android:theme="@style/AppTheme.NoActionBar.TranslucentStatusBar" />

<receiver android:name="org.edx.mobile.module.download.DownloadCompleteReceiver"
android:exported="false">
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.DOWNLOAD_COMPLETE" />
<action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED" />
Expand All @@ -305,8 +305,10 @@
</receiver>

<!-- Media status update receiver required for the SD Card storage feature -->
<receiver android:name=".receivers.MediaStatusReceiver" android:enabled="${sdCardEnabled}"
android:exported="false">
<receiver
android:name=".receivers.MediaStatusReceiver"
android:enabled="${sdCardEnabled}"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MEDIA_UNMOUNTED" />
<action android:name="android.intent.action.MEDIA_REMOVED" />
Expand All @@ -317,7 +319,7 @@

<!-- adb shell am broadcast -a org.edx.mobile.END_EMMA -->
<receiver android:name="org.edx.mobile.instrumentation.EndEmmaBroadcast"
android:exported="false">
android:exported="true">
<intent-filter>
<action android:name="org.edx.mobile.END_EMMA" />
</intent-filter>
Expand Down Expand Up @@ -371,7 +373,7 @@
<service
android:name="org.edx.mobile.notifications.services.NotificationService"
android:enabled="${fcmEnabled}"
android:exported="false">
android:exported="true">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
Expand Down

0 comments on commit ced5c9d

Please sign in to comment.