1. <legend id='ed67m'><style id='ed67m'><dir id='ed67m'><q id='ed67m'></q></dir></style></legend>
    <tfoot id='ed67m'></tfoot>

      <i id='ed67m'><tr id='ed67m'><dt id='ed67m'><q id='ed67m'><span id='ed67m'><b id='ed67m'><form id='ed67m'><ins id='ed67m'></ins><ul id='ed67m'></ul><sub id='ed67m'></sub></form><legend id='ed67m'></legend><bdo id='ed67m'><pre id='ed67m'><center id='ed67m'></center></pre></bdo></b><th id='ed67m'></th></span></q></dt></tr></i><div id='ed67m'><tfoot id='ed67m'></tfoot><dl id='ed67m'><fieldset id='ed67m'></fieldset></dl></div>
    1. <small id='ed67m'></small><noframes id='ed67m'>

      • <bdo id='ed67m'></bdo><ul id='ed67m'></ul>

      0 台设备支持 Android 应用

      Android app is supported by 0 devices(0 台设备支持 Android 应用)

      <small id='wuNMI'></small><noframes id='wuNMI'>

      <legend id='wuNMI'><style id='wuNMI'><dir id='wuNMI'><q id='wuNMI'></q></dir></style></legend>

      <tfoot id='wuNMI'></tfoot>

      <i id='wuNMI'><tr id='wuNMI'><dt id='wuNMI'><q id='wuNMI'><span id='wuNMI'><b id='wuNMI'><form id='wuNMI'><ins id='wuNMI'></ins><ul id='wuNMI'></ul><sub id='wuNMI'></sub></form><legend id='wuNMI'></legend><bdo id='wuNMI'><pre id='wuNMI'><center id='wuNMI'></center></pre></bdo></b><th id='wuNMI'></th></span></q></dt></tr></i><div id='wuNMI'><tfoot id='wuNMI'></tfoot><dl id='wuNMI'><fieldset id='wuNMI'></fieldset></dl></div>

          • <bdo id='wuNMI'></bdo><ul id='wuNMI'></ul>
                  <tbody id='wuNMI'></tbody>
                本文介绍了0 台设备支持 Android 应用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                Google Play 商店坚持认为我的应用受 0 台设备支持,我遇到了问题.我已经尝试了在 SO 和其他地方找到的所有解决方案.这与 apk 处于非活动状态无关,它是默认激活的,我什至尝试停用并重新激活它.

                I'm having trouble with the Google Play store that insists that my app is supported by 0 devices. I've tried all the solutions I found on SO and elsewhere. This isn't about the apk being inactive, it gets activated be default and I've even tried to deactivate and reactivate it.

                我已经在我的 Galaxy Nexus 上对其进行了测试,它运行良好,没有理由让它与每一个 Android 设备不兼容...

                I've tested it on my Galaxy Nexus and it works very well, there's no reason for it to be incompatible with every single Android device...

                这是我的清单文件:

                <uses-sdk
                    android:minSdkVersion="14"
                    android:targetSdkVersion="17" />
                
                <supports-screens
                    android:anyDensity="true"
                    android:largeScreens="true"
                    android:normalScreens="true"
                    android:resizeable="true"
                    android:smallScreens="true"
                    android:xlargeScreens="true" />
                
                <uses-permission android:name="android.permission.CAMERA" />
                <uses-permission android:name="android.permission.BLUETOOTH" />
                <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
                <uses-permission android:name="android.permission.INTERNET" />
                
                <uses-feature
                    android:name="android.hardware.accelerometer"
                    android:required="true" />
                <uses-feature
                    android:name="android.hardware.screen.portrait"
                    android:required="false" />
                

                完整的项目源代码可以在这里找到:https://github.com/Nurgak/Android-Bluetooth-Remote-Control 因为它是开源的.

                The full project source can be found here: https://github.com/Nurgak/Android-Bluetooth-Remote-Control as it's open-source.

                这是我在 Google Play 上看到的.

                This is what I see on Google Play.

                5 个特点

                android.hardware.ACCELEROMETER
                android.hardware.BLUETOOTH
                android.hardware.CAMERA
                android.hardware.camera.AUTOFOCUS
                android.hardware.TOUCHSCREEN
                

                还有4个权限

                android.permission.BLUETOOTH
                android.permission.BLUETOOTH_ADMIN
                android.permission.CAMERA
                android.permission.INTERNET
                

                我也对他们的支持感到非常震惊,我只是笼统地说嘿,你看过我们的常见问题解答了吗?"回复电子邮件.

                I'm absolutely appalled by their support too, I've only gotten generic "hey have you looked at our FAQs?" replies to e-mails.

                推荐答案

                • 尝试将 apk 名称从 com.bluetooth 更改为 com.nurgak.bluetoothremote
                • 尝试将所有 uses-feature"-tag 设置为 false
                • 尝试删除所有权限(我知道如果没有这些权限,该应用将无法运行,但只是为了弄清楚为什么 Google Play 说该应用支持 0 个设备)
                • P.S.:如果你设置它,你不需要 android.hardware.screen.portrait无论如何,false.在这种情况下它没有效果.

                  P.S.: You don't need android.hardware.screen.portrait if you set it to false, anyway. It doesn't have an effect in that case.

                  这篇关于0 台设备支持 Android 应用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Android - Is it possible to get install referrer programmatically(Android - 是否有可能以编程方式安装引荐来源网址)
                How to sign an APK with more than one certificate?(如何使用多个证书签署 APK?)
                versionCode vs versionName in Android Manifest(Android Manifest 中的 versionCode 与 versionName)
                What does this Google Play APK publish error message mean?(这个 Google Play APK 发布错误消息是什么意思?)
                Lost my keystore for uploaded app on android market(丢失了我在 android 市场上上传的应用程序的密钥库)
                App on Google Play always shows quot;Updatequot; instead of open(Google Play 上的应用程序总是显示“更新;而不是打开)
                • <bdo id='qXQc9'></bdo><ul id='qXQc9'></ul>

                      • <tfoot id='qXQc9'></tfoot>

                        <small id='qXQc9'></small><noframes id='qXQc9'>

                        <legend id='qXQc9'><style id='qXQc9'><dir id='qXQc9'><q id='qXQc9'></q></dir></style></legend>
                        <i id='qXQc9'><tr id='qXQc9'><dt id='qXQc9'><q id='qXQc9'><span id='qXQc9'><b id='qXQc9'><form id='qXQc9'><ins id='qXQc9'></ins><ul id='qXQc9'></ul><sub id='qXQc9'></sub></form><legend id='qXQc9'></legend><bdo id='qXQc9'><pre id='qXQc9'><center id='qXQc9'></center></pre></bdo></b><th id='qXQc9'></th></span></q></dt></tr></i><div id='qXQc9'><tfoot id='qXQc9'></tfoot><dl id='qXQc9'><fieldset id='qXQc9'></fieldset></dl></div>
                          <tbody id='qXQc9'></tbody>