i repeatedly tried to upload my app, but every time upload crashed. Before uploading i cleaned and built project, then i exported it.
我反复尝试上传我的应用程序,但每次上传都崩溃了。在上传我清理和建造的项目之前,我导出了它。
This is my manifest:
这是我的表现:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.inzerujem"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.SEND_SMS" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name" >
<activity
android:name=".InzerujemActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="TopicActivity"
android:screenOrientation="portrait" >
</activity>
</application>
</manifest>
Thank you for answers.
谢谢你的回答。
1 个解决方案
#1
0
package="com.android.inzerujem"
There's your problem. You are NOT allowed to use com.android for package names.
这是你的问题。您不能使用com.android作为包名。
#1
0
package="com.android.inzerujem"
There's your problem. You are NOT allowed to use com.android for package names.
这是你的问题。您不能使用com.android作为包名。