我正在为平板电脑开发一个反应本地应用程序,
我成功地上传了一个用于内部测试的软件,但是这个应用程序只能在手机上运行,而不能在talblets上运行,平板电脑可以在兼容设备列表上找到,有谁能帮上忙呢?这是我的AndroidManifest
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
ext {
buildToolsVersion = "30.0.2"
minSdkVersion = 21
compileSdkVersion = 31
targetSdkVersion = 31
ndkVersion = "21.4.7075529"
androidXCore = "1.7.0"
}我的平板电脑是联想TB-X306F。
在google商店控制台上,我在内部测试中看到了这个
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
发布于 2022-06-07 14:49:25
关闭这个问题是因为国家或地区的限制。平板电脑上的帐户是从另一个国家创建的,我试着在平板电脑上更改google play商店的电子邮件地址,它起了作用。
https://stackoverflow.com/questions/72518898
复制相似问题