2

一直在麻省理工学院的 App Inventor 中构建一个应用程序(我知道这个网站上的这个应用程序。)我昨天将第一个版本上传到了 Google Play,一切都很顺利。今天早上尝试将新的 APK 推送到生产环境,但出现此错误;

http://i.stack.imgur.com/GzBD9.png

(抱歉没有足够的代表来发布图片)

困惑,我继续反编译APK并得到了这个;

   <?xml version="1.0" encoding="utf-8"?>
<manifest android:versionCode="2" android:versionName="1.0.1" package="appinventor.ai_benjamdavidstocker.IGSoundboard"
  xmlns:android="http://schemas.android.com/apk/res/android">
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.VIBRATE" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <application android:label="IGSoundboard" android:icon="@drawable/ya" android:debuggable="false">
        <activity android:name=".Screen1" android:configChanges="keyboardHidden|orientation" android:windowSoftInputMode="stateHidden">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name="appinventor.ai_benjamdavidstocker.IGSoundboard.Board" android:configChanges="keyboardHidden|orientation" android:windowSoftInputMode="stateHidden">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
            </intent-filter>
        </activity>
        <activity android:name="com.google.appinventor.components.runtime.ListPickerActivity" android:screenOrientation="behind" android:configChanges="keyboardHidden|orientation" />
        <activity android:name="com.google.appinventor.components.runtime.WebViewActivity" android:screenOrientation="behind" android:configChanges="keyboardHidden|orientation">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
            </intent-filter>
        </activity>
    </application>
</manifest>

如您所见,package="appinventor.ai_benjamdavidstocker.IGSoundboard" 它与 Google Play 请求的匹配。所以有什么问题?

4

1 回答 1

3

SoundBoard 中的大写字母在 Board 上有所不同

代替

appinventor.ai_benjamdavidstocker.IGSoundboard

它应该是

appinventor.ai_benjamdavidstocker.IGSoundBoard

带有大写字母“B”的 IGSoundBoard

于 2014-04-15T12:24:01.763 回答