android 项目最重要的文件manifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.qq.xgdemo"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="8" />
<application
android:name="com.qq.xgdemo.App"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
</application>
</manifest>
本文出自 “编程的点点滴滴” 博客,请务必保留此出处http://andylhx.blog.51cto.com/8891164/1735535
原文地址:http://andylhx.blog.51cto.com/8891164/1735535