适用于某些智能手机的 Google Play 隐形应用
Posted
技术标签:
【中文标题】适用于某些智能手机的 Google Play 隐形应用【英文标题】:Google Play invisible app for certain smartphone 【发布时间】:2019-08-05 03:48:45 【问题描述】:我是 android 开发新手,遇到了一个奇怪的问题: 我在 google play 上发布了我的应用程序,最低 api 级别为 18(android 4.4)。 我用许多 android 版本测试了我的应用程序,并且除了一台设备外运行良好。 运行 android 4.5.5 的中国智能手机 (cubot P9) 在 google play 中根本看不到该应用程序。 尽管 android 版本应该兼容,但 Play 商店会将应用标记为不兼容。
不敢相信手机报假安卓版? 谁能给我一个解释?
清单文件: ...
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-feature
android:name="android.hardware.camera"
android:required="true" />
<application
android:name=".Global"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:configChanges="orientation|screenSize|keyboardHidden"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".MyFirebaseMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
</intent-filter>
</service>
<service android:name=".FirebaseIDService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
</intent-filter>
</service>
<service
android:name=".GPS_Service"
android:process=":myGPS_service" />
<meta-data
android:name="com.google.firebase.messaging.default_notification_channel_id"
android:value="mynotificationchannel" />
<activity android:name=".VisualizzaImmagine"></activity>
<activity android:name=".ShowInNewActivity"></activity>
</application>
...
【问题讨论】:
也许您的 Manifest 中有一些电话不匹配的要求?你能发布你的 AndroidManifest 文件吗? 【参考方案1】:我建议仔细检查清单中声明的版本,例如我在附件清单中没有找到android:minSdkVersion
。
同时修改手机功能,也许您的应用需要某些功能,例如屏幕密度或设备上不可用的特定硬件。
此外,如果您可以访问真实设备,您可以开发一个简单的应用程序来记录/显示 Android 操作系统版本:
Log.v("OS Version",String.valueOf(android.os.Build.VERSION.SDK_INT));
并检查您的应用是否真的支持它,您也可以从该表中验证: https://developer.android.com/reference/android/os/Build.VERSION_CODES.html
【讨论】:
我认为问题不是由于缺少功能,因为如果我直接使用 apk 安装应用程序,它可以完美运行。唯一的问题似乎是该特定设备的 google play 不兼容。以上是关于适用于某些智能手机的 Google Play 隐形应用的主要内容,如果未能解决你的问题,请参考以下文章
智能应用横幅;适用于 Android/Google Play 的 Windows 应用商店应用 HTML 元标记?
小米google play service停止工作解决办法,不root,不刷第三方recovery(也适用于其他的手机)
Flurry 适用于没有 Google Play 服务的 Android 设备
如何在 Unity3D 上显示适用于 Android 的 Google Play 游戏“欢迎回来”吐司?
如何解决 Google GMS 在被锁定失效后,无法再使用 Google Play Store的问题;亦适用于在不使用 Google GMS 的情况下,如何正常使用Google Play 商店
如何解决 Google GMS 在被锁定失效后,无法再使用 Google Play Store的问题;亦适用于在不使用 Google GMS 的情况下,如何正常使用Google Play 商店