我尝试更改我的包名称,如 com.project_name 但没有弄清楚。我的项目中真正的问题是什么?
我收到以下错误:
AndroidManifest.XML 文件中的错误“应用程序包 'AndroidManifest.xml' 必须至少有 2 个段”
AndroidManifest.XML 文件;
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.rssreader"
android:versionCode="2"
android:versionName="1.01" >
<uses-sdk
android:maxSdkVersion="15"
android:minSdkVersion="7" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name" >
<activity
android:name=".splash"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>