diff options
Diffstat (limited to 'Software/Android_Studio/Tango.Stubs.UI/src/main/AndroidManifest.xml')
| -rw-r--r-- | Software/Android_Studio/Tango.Stubs.UI/src/main/AndroidManifest.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Software/Android_Studio/Tango.Stubs.UI/src/main/AndroidManifest.xml b/Software/Android_Studio/Tango.Stubs.UI/src/main/AndroidManifest.xml index e699ecbd3..ad99a3b57 100644 --- a/Software/Android_Studio/Tango.Stubs.UI/src/main/AndroidManifest.xml +++ b/Software/Android_Studio/Tango.Stubs.UI/src/main/AndroidManifest.xml @@ -3,6 +3,7 @@ package="com.twine.tango.stubs.ui"> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> + <uses-feature android:name="android.hardware.usb.host" android:required="true" /> <application android:name=".App" @@ -18,6 +19,13 @@ <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> + <intent-filter> + <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" /> + </intent-filter> + + <meta-data + android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" + android:resource="@xml/device_filter" /> </activity> </application> |
