0

因此,我使用 Phonegap 构建服务器构建了一个应用程序。但是,它不会生成 google play 商店认为平板电脑准备好的 APK。我已经成功地反编译了应用程序并重新编译了它,但似乎无论我在清单中添加什么附加信息,它都不会影响可以下载我的应用程序的设备。下面是清单。

<?xml version="1.0" encoding="utf-8"?>
<manifest android:versionCode="13425" android:versionName="2.1"     android:windowSoftInputMode="adjustPan" android:installLocation="internalOnly" package="com.QSPV78GLVZ.eQuest2"
 xmlns:android="http://schemas.android.com/apk/res/android">
 <supports-screens android:anyDensity="true" android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:resizeable="true" android:xlargeScreens="true" />
 <uses-sdk android:minSdkVersion="7"
android:targetSdkVersion="17"  />
<compatible-screens>
<!--no small size screens -->

<!--all normal size screens -->
<screen android:screenSize="normal" android:screenDensity="ldpi" />
<screen android:screenSize="normal" android:screenDensity="mdpi" />
<screen android:screenSize="normal" android:screenDensity="hdpi" />
<screen android:screenSize="normal" android:screenDensity="xhdpi" />

<!-- all large size screens -->
<screen android:screenSize="large" android:screenDensity="ldpi" />
<screen android:screenSize="large" android:screenDensity="mdpi" />
<screen android:screenSize="large" android:screenDensity="hdpi" />
<screen android:screenSize="large" android:screenDensity="xhdpi" />

<!-- all xlarge size screens -->
<screen android:screenSize="xlarge" android:screenDensity="ldpi" />
<screen android:screenSize="xlarge" android:screenDensity="mdpi" />
<screen android:screenSize="xlarge" android:screenDensity="hdpi" />
<screen android:screenSize="xlarge" android:screenDensity="xhdpi" />

<!-- Special case for Nexus 7 -->
<screen android:screenSize="large" android:screenDensity="213" />
</compatible-screens>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.BROADCAST_STICKY" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.RECORD_VIDEO" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application android:label="@string/app_name" android:icon="@drawable/icon" android:debuggable="true" android:hardwareAccelerated="true">
<activity android:label="@string/app_name" android:name=".eQuest" android:screenOrientation="unspecified" android:configChanges="keyboardHidden|orientation">
  <intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
  </intent-filter>
</activity>
<activity android:label="@string/app_name" android:name="com.phonegap.DroidGap">
  <intent-filter />
</activity>
</application>
</manifest>

感谢您花时间阅读我的帖子。

4

1 回答 1

1

我打赌你有权限问题。以下是要尝试修改的内容,并查看平板电脑是否显示为选项。如果平板电脑没有特定的硬件功能,那么如果您在列表中拥有它的权限(未经修改),它将不会显示。例如,如果 Nexus 7 没有麦克风,则“record_audio”权限将阻止它在商店中可用,直到添加这样的行......

所以基本上你需要检查每个权限,并确定这些权限需要什么硬件才能工作,并添加像上面这样的行让清单知道它不是必需的(required="false")

使用此列表@ http://developer.android.com/guide/topics/manifest/uses-feature-element.html#permissions

并转到名为“暗示功能要求的权限”的区域

我们将假设我们将支持的所有平板电脑都至少有一个摄像头,并且

因此,我们不需要添加

这将排除所有缺少摄像头的设备来查找应用程序

我们需要为位置功能添加这些行,因为我们希望用户在存在时使用它们,但不需要它。

录制音频需要这条线

另外,这是我找到的相关线程

如何使 android Phonegap 可用于平板电脑?

于 2013-07-30T06:04:22.537 回答