No resource identifier found for attribute 'appComponentFactory' in package 'android'
阿新 • • 發佈:2018-12-14
說明
國慶一回來Android專案編譯就報這個錯, 所有人的裝置都無法編譯成功, 排查後推斷是 Android SDK 28的問題,但是我們的 CompileSDKVersion 和 TargetVersion / BuildTools 都是 26, 按理來說不應該出這個問題. 可經過一番掙扎後發現還是隻能升級 SDK 版本, 但是升級 28 的話, 有兩種改動:
- 全部改為 Jetpack 的 androidx.xxx 這類的依賴庫, 但是程式碼改動實在太多, Android Studio 的 Refactor – Migrate to AndroidX 經過嘗試後是個殘廢, 因為遷移過去居然是 androidx-1.0.0-beta1 的包名,然而最新的 release 1.0.0 已經換包名了,還得手動該一波…
- 只升級SDK版本,但是 support 的依賴庫依舊使用老版本的, 這樣改動小很多,但是各種編譯報錯, 一點點修復吧
解決方式
第一種比較麻煩,升級SDK後需要將原有的 support lib 包名都替換為對應的 androidx.xxx, 工作量太大, 改動過多…
第二種解決方式:
- 新增以下程式碼到 app/build.gradle 並且升級 SDK 版本號:
android { compileSdkVersion 28 buildToolsVersion '28.0.3' defaultConfig { targetSdkVersion 28 } } configurations.all { resolutionStrategy.force 'com.android.support:support-v4:26.1.0' resolutionStrategy.force 'com.android.support:appcompat-v7:26.1.0' resolutionStrategy.force 'com.android.support:recyclerview-v7:26.1.0' resolutionStrategy.force 'com.android.support:cardview-v7:26.1.0' resolutionStrategy.force 'com.android.support:design:26.1.0' }
- 修改 AndroidManifest.xml 中的 Application 程式碼塊 :
<application android:name=".WeloveBaseApplication" <--! 關鍵兩行程式碼 --> android:appComponentFactory="任意字元" tools:replace="android:appComponentFactory" android:icon="@drawable/icon" android:label="@string/app_name" android:largeHeap="true" android:theme="@style/Theme.AppCompat.Light.NoActionBar" >
改後編譯即可.
UPDATE 第二天
第二天發現run可以,編譯打包卻依舊報錯, 各種 multi dex file was defined / Error:Program type already present: android.support.v4.app.xxxx 各種已存在, 這裡有個辦法, 使用 ./gradlew -q app:dependencies
(Linux 環境, 如果是Windows 就不需要 ./) 檢視專案的依賴樹, 一點點排除問題吧…