简体   繁体   English

不支持Android应用,设备(Galaxy Mini)

[英]Android app, device (Galaxy Mini) not supported

My android app is not supported on GalaxyMini (among others). GalaxyMini(以及其他)不支持我的Android应用程序。 When I look at the features needed by the app (copy/pasted from google play admin console), all seems to be there on the GalaxyMini. 当我查看应用程序所需的功能(从谷歌播放管理控制台复制/粘贴)时,GalaxyMini上似乎都有。 I don't understand why it would not be served on GalaxyMini. 我不明白为什么它不会在GalaxyMini上提供。

NativePlateform armeabi seems not to be the problem as I've tried with a previous apk without this feature requirement and the GalaxyMini is still not supported. NativePlateform armeabi似乎不是问题,因为我尝试使用之前没有此功能要求的apk并且仍然不支持GalaxyMini。

Any idea? 任何的想法?

Localized to: default, Dutch, French
Permissions: android.permission.INTERNET, android.permission.ACCESS_FINE_LOCATION, android.permission.CAMERA, android.permission.MODIFY_AUDIO_SETTINGS, android.permission.WAKE_LOCK
Features: android.hardware.camera, android.hardware.camera.autofocus, android.hardware.location, android.hardware.location.gps, android.hardware.screen.landscape, android.hardware.screen.portrait, android.hardware.touchscreen
No main expansion file
No expansion patch file
[8/31/12 10:00:14 AM] : API level: 7-16+
Supported screens: small-xlarge
OpenGL textures: all
Native platforms: armeabi

The galaxy mini does not have android.hardware.camera.autofocus . galaxy mini没有android.hardware.camera.autofocus Its camera is fixed focus. 它的相机是固定焦点。 If the feature is not an absolute requirement in your app then you could add android:required="false" to its uses-feature tag. 如果该功能不是您应用中的绝对要求,那么您可以将android:required="false"到其uses-feature标记中。

After many tries, the problem was "android.hardware.camera.autofocus" GalaxyMini is supposed to support autofocus ont the tech specs. 经过多次尝试,问题是“android.hardware.camera.autofocus”GalaxyMini应该支持自动对焦技术规格。 I really wish that the google play developper console tells us which of the manifest settings are used to exclude a device, that would save us a lot of time. 我真的希望谷歌播放开发者控制台告诉我们哪些清单设置用于排除设备,这将节省我们很多时间。

So I just added the following line in the manifest to make it available to galaxy mini (and about 300 other devices!) : 所以我只是在清单中添加以下行以使其可用于galaxy mini(以及大约300个其他设备!):

<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Android App与三星galaxy S4 mini不兼容 - Android App is not compatible with Samsung galaxy S4 mini Android APK支持的设备列表显示Samsung Galaxy Y-GT-S5360,但在设备Playstore中我的应用未显示 - Android APK Supported device List shows Samsung Galaxy Y - GT-S5360 but In the Device Playstore My App not getting Display 三星Galaxy Mini的设备兼容性问题 - Device Compatibility Issue with Samsung Galaxy Mini 任何设备均不支持Android应用? - Android app not supported on any device? 我的android应用不支持任何设备 - No device supported for my android app 我的Android应用支持0个设备 - 0 device supported for my Android App Android MediaPlayer在虚拟设备和平板电脑上可以正常播放声音,但在智能手机galaxy s iii mini上可以间歇播放 - Android MediaPlayer playing sound ok on virtual device and on tablet, but intermittently on smartphone galaxy s iii mini Eclipse无法识别android 4.2(galaxy mini 2) - Eclipse do not recognize android 4.2 (galaxy mini 2) 使用Apache Cordova创建的应用程序不适用于galaxy s3 mini(android 4.1.2) - App created with apache Cordova does't work on galaxy s3 mini (android 4.1.2) 如何制作需要相机支持的Android应用程序才能在Samsung Galaxy Mini和类似设备上运行? - How to make Android app requiring camera support to run on Samsung Galaxy Mini and similar devices?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM