Skip to content

Commit

Permalink
intents: add a sample listener for sdcard insert events
Browse files Browse the repository at this point in the history
  • Loading branch information
Cory Fields committed Mar 1, 2013
1 parent b23faf5 commit 45d742f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tools/android/packaging/xbmc/AndroidManifest.xml
Expand Up @@ -45,6 +45,12 @@
android:name="android.app.lib_name"
android:value="xbmc" />
</activity>
<receiver android:name="XBMCBroadcastReceiver" >
<intent-filter>
<action android:name="android.intent.action.MEDIA_MOUNTED" />
<data android:scheme="file"/>
</intent-filter>
</receiver>
</application>

</manifest><!-- END_INCLUDE(manifest) -->
Expand Down

0 comments on commit 45d742f

Please sign in to comment.