您好,登錄后才能下訂單哦!
用了一段時間Studio,總體感覺的確比Eclipse要好用些,特別是在依賴庫的設置上相當方便。但是其中也遇到很多問題,暫時記錄在下面:
之前編譯正常,但是今早升級到0.60, gradle插件升級到0.11(gradle版本1.12)以后出來好幾個問題
,在merge Manifest的時候報錯:
Error:(31, 9) Attribute application@icon value=(@drawable/ic_launcher) from AndroidManifest.xml:31:9
Error:(29, 9) Attribute application@name value=(com.wooxcloud.wooxregistry.WxApplication) from AndroidManifest.xml:29:9
Error:(33, 9) Attribute application@theme value=(@style/Theme.Sherlock) from AndroidManifest.xml:33:9
is also present at WooxMainActivity.libs:vlc-android:unspecified:27:9 value=(@style/Theme.VLC.NoTitleBar)
Suggestion: add 'tools:replace="theme"' to <application> element at AndroidManifest.xml:29:5 to override
Error:Execution failed for task ':processDebugManifest'. > Manifest merger failed with multiple errors, see logs
網上查了查,發現http://tools.android.com/tech-docs/new-build-system/user-guide/manifest-merger
有講新版本改變了merge的方法,對于conflict可以加tools:replace來解決
xmlns:tools="http://schemas.android.com/tools"
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.xxxx.xxxx"
xmlns:tools="http://schemas.android.com/tools"
android:versionCode="1"
android:versionName="1.0" >
然后再沖突的地方
<application
android:name="com.xxxx.xxxx.xxApplication"
android:allowBackup="false"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.Sherlock"
tools:replace="name,icon,label,theme">
然后編譯通過
從eclipse import了一個項目,編譯報找不到依賴庫,
Error:(13, 0) Project with path ':libs:ActionBarSherlock' could not be found in root project 'WooxMainActivity'.
查了查發現根目錄沒有settings.gradle文件,創建一個加入如下內容:
include 'libs:ActionBarSherlock', 'libs:vlc-android', 'libs:SlidingMenu', 'libs:WheelView'
從Eclipse導入項目,報找不到application ID以及minSdkVersion不對:
Error:Failed to get application id for debug
在build.gradle里面發現defaultConfig {}沒有東西
加入
android {
...
defaultConfig {
applicationId 'com.wooxcloud.wooxregistry'
minSdkVersion 10
targetSdkVersion 17
versionCode 1
versionName '1.0'
}
問題解決。.
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。