正在麻省理工学院的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正在申请的内容相匹配。那么问题是什么?
答案 0 :(得分:3)
SoundBoard中的大写字母与单词Board
不同而不是
appinventor.ai_benjamdavidstocker.IGSoundboard
应该是
appinventor.ai_benjamdavidstocker.IGSoundBoard
IGSoundBoard,大写'B'