应用程序是没有的Nexus 4的Andr​​oid 5.1.1兼容 [英] App is not compatible in Nexus 4 Android 5.1.1

查看:130
本文介绍了应用程序是没有的Nexus 4的Andr​​oid 5.1.1兼容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的应用程序上传成功的游戏商店,它是好的运行
昨天我的客户所面临的问题,他是不是能够上安装应用程序的 Nexus4的Andr​​oid 5.1.1版本

My app is successfully uploaded on play store and it is running fine yesterday my client faced the issue that he is not able to install app on Nexus4 Android Version 5.1.1

时,他正在寻找与App name.when他Chrome浏览器试图后来他发现,有应用程序没有显示消息

App is not showing when he is searching With app name.when he tried with chrome browser then he found that there was a message

应用是不是与此设备

我的应用程序运行良好的Genymotion Nexus4 5.1.0版本时,我用APK测试。

My app is running fine in Genymotion Nexus4 5.1.0 Version when I tested with APK.

我没有把Android中Manifiest任何限制对任何屏幕

i did not put any restrictions in Android Manifiest for any screen

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tw.e2apwellness"
android:versionCode="14"
android:versionName="2.3" >

<uses-sdk
    android:minSdkVersion="11"
    android:targetSdkVersion="17" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.GET_TASKS" />

<uses-permission android:name="android.permission.WAKE_LOCK" />
<!-- Creates a custom permission so only this app can receive its messages. -->
<permission
    android:name="com.tw.e2apwellness.permission.C2D_MESSAGE"
    android:protectionLevel="signature" />

<uses-permission android:name="com.tw.e2apwellness.permission.C2D_MESSAGE" />

<!-- GCM requires a Google account. -->
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.VIBRATE" />

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

<application
    android:name="com.tw.e2apwellness.activity.E2APWellnessApp"
    android:hardwareAccelerated="false"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:largeHeap="true"
    android:theme="@android:style/Theme.NoTitleBar" >
    <activity
        android:name=".activity.SplashActivity"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>

    </activity>
    <activity
        android:name=".activity.PrivacyPolicyActivity"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar" >
    </activity>
    <activity
        android:name=".activity.ChangePasswordActivity"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar" >
    </activity>
    <activity
        android:name=".activity.LoginActivity"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar" >
    </activity>
    <activity
        android:name=".activity.HomeActivity"
        android:configChanges="keyboardHidden|orientation|screenSize"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.NoTitleBar"
        android:windowSoftInputMode="adjustPan" >
    </activity>
    <activity
        android:name=".activity.ShowGcmNotificationActivity"
        android:label="@string/title_activity_show_gcm_notification"
        android:theme="@style/CustomDialogTheme" >
    </activity>
    <activity
        android:name=".activity.CustomCameraActivity"
        android:screenOrientation="portrait" >
    </activity>

    <service
        android:name="com.tw.e2apwellness.service.ArticleReadSyncService"
        android:exported="false" >
    </service>
    <service
        android:name="com.tw.e2apwellness.service.ForumReplySyncService"
        android:exported="false" >
    </service>
    <service
        android:name="com.tw.e2apwellness.service.TaskSyncService"
        android:exported="false" >
    </service>
    <service
        android:name="com.tw.e2apwellness.service.TrackerSyncService"
        android:exported="false" >
    </service>
    <service
        android:name="com.tw.e2apwellness.service.QuerySyncService"
        android:exported="false" >
    </service>
    <service
        android:name="com.tw.e2apwellness.service.ScoreSyncService"
        android:exported="false" >
    </service>
    <service
        android:name="com.tw.e2apwellness.service.JoinSyncService"
        android:exported="false" >
    </service>
    <service
        android:name="com.tw.e2apwellness.service.FeedbackSyncService"
        android:exported="false" >
    </service>
    <service
        android:name="com.tw.e2apwellness.service.SyncAllService"
        android:exported="false" >
    </service>
    <service
        android:name="com.tw.e2apwellness.service.DiscussionReplyDeleteService"
        android:exported="false" >
    </service>
    <service
        android:name="com.tw.e2apwellness.service.ArticleCommentRatingSubsService"
        android:exported="false" >
    </service>
    <service android:name="com.tw.e2apwellness.service.GcmIntentService" >
    </service>

    <receiver
        android:name="com.tw.e2apwellness.receiver.GcmBroadcastReceiver"
        android:permission="com.google.android.c2dm.permission.SEND" >
        <intent-filter>

            <!-- Receives the actual messages. -->
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />
            <!-- Receives the registration id. -->
            <action android:name="com.google.android.c2dm.intent.REGISTRATION" />

            <category android:name="com.tw.e2apwellness" />
        </intent-filter>
    </receiver>
</application>

请帮我,我被困在这里

推荐答案

您的目标SDK版本是17(果冻豆4.2),这就是为什么不支持棒棒糖。更新SDK版本到最新的API 23或棒棒糖(21,22)

Your target sdk version is 17 (Jelly bean 4.2), that's why Lollipop is not supported. Update your sdk version to the latest API 23 or Lollipop (21,22)

<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="23" />

这篇关于应用程序是没有的Nexus 4的Andr​​oid 5.1.1兼容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆