소스 검색

Let Android know that we can handle USB devices

This is important on Android 29 and above if you don't want to be prompted for each device that you open
Sam Lantinga 4 년 전
부모
커밋
3172615074
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      android-project/app/src/main/AndroidManifest.xml

+ 4 - 0
android-project/app/src/main/AndroidManifest.xml

@@ -77,6 +77,10 @@
                 <action android:name="android.intent.action.MAIN" />
                 <category android:name="android.intent.category.LAUNCHER" />
             </intent-filter>
+            <!-- Let Android know that we can handle some USB devices and should receive this event -->
+            <intent-filter>
+                <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
+            </intent-filter>
             <!-- Drop file event -->
             <!--
             <intent-filter>