首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >设备兼容(平板电脑),但不能在google上安装应用程序,内部测试在手机上运行良好

设备兼容(平板电脑),但不能在google上安装应用程序,内部测试在手机上运行良好
EN

Stack Overflow用户
提问于 2022-06-06 14:05:17
回答 1查看 73关注 0票数 0

我正在为平板电脑开发一个反应本地应用程序,

我成功地上传了一个用于内部测试的软件,但是这个应用程序只能在手机上运行,而不能在talblets上运行,平板电脑可以在兼容设备列表上找到,有谁能帮上忙呢?这是我的AndroidManifest

代码语言:javascript
运行
复制
  package="com.pyProj">

    <uses-permission android:name="android.permission.INTERNET" />
    <supports-screens android:resizeable="true"
    android:smallScreens="true"
    android:normalScreens="true"
    android:largeScreens="true"
    android:xlargeScreens="true"
    android:anyDensity="true"/>
   
    <application
      android:name=".MainApplication"
      android:label="@string/app_name"
      android:icon="@mipmap/ic_launcher"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:allowBackup="false"
      android:usesCleartextTraffic="true"
      android:theme="@style/AppTheme">
      <activity
        android:exported="true"
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:screenOrientation="landscape"
        android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
        android:launchMode="singleTask"
        android:windowSoftInputMode="adjustResize">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
      </activity>
    </application>
</manifest>

我的Build.gradle

代码语言:javascript
运行
复制
    ext {
        buildToolsVersion = "30.0.2"
        minSdkVersion = 21
        compileSdkVersion = 31
        targetSdkVersion = 31
        ndkVersion = "21.4.7075529"
        androidXCore = "1.7.0"

    }

我的平板电脑是联想TB-X306F。

在google商店控制台上,我在内部测试中看到了这个

代码语言:javascript
运行
复制
AppName

Accessible to internal testers
brightness_1
1 release code
Release date: June 6 15:16
Not examined

Version codes
16
Countries/Regions
176
Supported Android devices
17,793

平板电脑是兼容的,所以我不太明白为什么当我共享内部测试链接时,我会收到这样的消息:

This item isn't available

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2022-06-07 14:49:25

关闭这个问题是因为国家或地区的限制。平板电脑上的帐户是从另一个国家创建的,我试着在平板电脑上更改google play商店的电子邮件地址,它起了作用。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/72518898

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档