-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
uses-feature tag in AndroidManifest file #958
Comments
Not really a good way, but you can edit the template (AndroidManifest.tmpl.xml) for the manifest in the bootstraps folder. |
@Rix That tag is mostly considered an evil, because it filters(hides) your application from other users. If you aren't going to do only and only something related to that single piece of hardware or base your app on it, then use permissions and check for the availability of the hardware later. I met that tag only for filtering OpenGL and most of the devices should be able to support USB host anyway since api 12 or so. Although I think there isn't a specified permission for USB host directly in AndroidManifest, you may try to use this example without the Other useful stuff I found: example, fancy stuff. Otherwise you can find a really big list of permissions at #965. |
Ah! This explains kivy/buildozer#1715 In summary:
We need to unblock this PR. Either progress it to merged (and close the Buildozer Issue as fixed) or reject it (and update the Buildozer Issue to say the parameters should be rolled back.) |
Is it possible to add uses-feature tags in AndroidManifest file ?
i.e:
<uses-feature android:name="android.hardware.usb.host" />
see https://developer.android.com/guide/topics/connectivity/usb/host.html
The text was updated successfully, but these errors were encountered: