Android Studio - Starts the app twice on USB_DEVICE_ATTACHED
I want to start my app on USB_DEVICE_ATTACHED action. It works fine but my app start twice. Is it possible to check if the USB_DEVICE_ATTACHED message comes twice (Maybe print the PID VID pair acording to the message?)
For test purpose I made a receiver and write all the PID VID pairs when it attached and that one comes once wich triggers my app to launch.
(I tried to start the app here in the receiver function but the main activity cannot reached the USB device (Maybe permission problem)
My hardware is an ODroid XU4 and has 3 USB devices (Touch Screen, Printer, POS terminal)
Here is my manifest:
<activity
android:name=".MainActivity"
android:launchMode="singleInstance">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<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/usb_device_filter" />
</activity>
And here is my usb_device_filter.xml:
<resources>
<usb-device vendor-id="4177" product-id="4096" />
</resources>
android odroid
add a comment |
I want to start my app on USB_DEVICE_ATTACHED action. It works fine but my app start twice. Is it possible to check if the USB_DEVICE_ATTACHED message comes twice (Maybe print the PID VID pair acording to the message?)
For test purpose I made a receiver and write all the PID VID pairs when it attached and that one comes once wich triggers my app to launch.
(I tried to start the app here in the receiver function but the main activity cannot reached the USB device (Maybe permission problem)
My hardware is an ODroid XU4 and has 3 USB devices (Touch Screen, Printer, POS terminal)
Here is my manifest:
<activity
android:name=".MainActivity"
android:launchMode="singleInstance">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<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/usb_device_filter" />
</activity>
And here is my usb_device_filter.xml:
<resources>
<usb-device vendor-id="4177" product-id="4096" />
</resources>
android odroid
add a comment |
I want to start my app on USB_DEVICE_ATTACHED action. It works fine but my app start twice. Is it possible to check if the USB_DEVICE_ATTACHED message comes twice (Maybe print the PID VID pair acording to the message?)
For test purpose I made a receiver and write all the PID VID pairs when it attached and that one comes once wich triggers my app to launch.
(I tried to start the app here in the receiver function but the main activity cannot reached the USB device (Maybe permission problem)
My hardware is an ODroid XU4 and has 3 USB devices (Touch Screen, Printer, POS terminal)
Here is my manifest:
<activity
android:name=".MainActivity"
android:launchMode="singleInstance">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<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/usb_device_filter" />
</activity>
And here is my usb_device_filter.xml:
<resources>
<usb-device vendor-id="4177" product-id="4096" />
</resources>
android odroid
I want to start my app on USB_DEVICE_ATTACHED action. It works fine but my app start twice. Is it possible to check if the USB_DEVICE_ATTACHED message comes twice (Maybe print the PID VID pair acording to the message?)
For test purpose I made a receiver and write all the PID VID pairs when it attached and that one comes once wich triggers my app to launch.
(I tried to start the app here in the receiver function but the main activity cannot reached the USB device (Maybe permission problem)
My hardware is an ODroid XU4 and has 3 USB devices (Touch Screen, Printer, POS terminal)
Here is my manifest:
<activity
android:name=".MainActivity"
android:launchMode="singleInstance">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<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/usb_device_filter" />
</activity>
And here is my usb_device_filter.xml:
<resources>
<usb-device vendor-id="4177" product-id="4096" />
</resources>
android odroid
android odroid
asked Nov 25 '18 at 1:56
ChewyChewy
11
11
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53464024%2fandroid-studio-starts-the-app-twice-on-usb-device-attached%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53464024%2fandroid-studio-starts-the-app-twice-on-usb-device-attached%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown