我建立使用動作條福爾摩斯在Android Studio中演示應用程序,我面臨的問題,在下面的鏈接中提到: - 下面的答覆貼在上面的鏈接我後 Previous ProblemAndroid的工作室 - 搖籃清單合併失敗
現在做了一些變化,現在我面臨這個
Gradle: Execution failed for task ':SherlockTest:processDebugManifest'.
> Manifest merging failed. See console for more info.
我的應用程序清單文件是: -
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.sherlocktest"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="16" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.sherlocktest.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
和動作條福爾摩斯清單文件是: -
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="440"
android:versionName="4.4.0"
package="com.actionbarsherlock">
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="16"/>
<application/>
</manifest>
我不能夠弄清楚這裏有什麼問題,請大家幫忙
這對我沒有幫助。 –
版本應該寫成整數而不是字符串。添加了一個編輯。 – 7wonders
謝謝你爲我做的。 –