在項目開發中需要添加webview,載入內置的html文件,代碼寫完後ios運行沒有問題,運行安卓時報錯,錯誤提示如下: FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':a ...
在項目開發中需要添加webview,載入內置的html文件,代碼寫完後ios運行沒有問題,運行安卓時報錯,錯誤提示如下:
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:checkDebugAarMetadata'.
> A failure occurred while executing com.android.build.gradle.internal.tasks.CheckAarMetadataWorkAction
> 2 issues were found when checking AAR metadata:
1. Dependency 'androidx.webkit:webkit:1.8.0' requires libraries and applications that
depend on it to compile against version 34 or later of the
Android APIs.
:app is currently compiled against android-33.
Also, the maximum recommended compile SDK version for Android Gradle
plugin 7.3.0 is 33.
Recommended action: Update this project's version of the Android Gradle
plugin to one that supports 34, then update this project to use
compileSdkVerion of at least 34.
Note that updating a library or application's compileSdkVersion (which
allows newer APIs to be used) can be done separately from updating
targetSdkVersion (which opts the app in to new runtime behavior) and
minSdkVersion (which determines which devices the app can be installed
on).
2. Dependency 'androidx.browser:browser:1.6.0' requires libraries and applications that
depend on it to compile against version 34 or later of the
Android APIs.
:app is currently compiled against android-33.
錯誤提示的關鍵字主要有:Gradle、minSdkVersion、compileSdkVerion、targetSdkVersion
Gradle:
藉助 Gradle 版本目錄,您能夠以可擴容的方式添加和維護依賴項和插件。使用 Gradle 版本目錄,您可以在擁有多個模塊時更輕鬆地管理依賴項和插件。您不必對各個 build 文件中的依賴項名稱和版本進行硬編碼,也不必在每次需要升級依賴項時都更新每個條目,而是可以創建一個包含依賴項的中央版本目錄,各種模塊可在 Android Studio 協助下以類型安全的方式引用該目錄。
這是安卓開發者網站的說明,我們可以理解為可以通過Gradle去管理不同模塊的依賴項和插件。這個以後再說。
minSdkVersion:
應用程式支持的最低API版本.或者說應用運行所需最低 API 級別的整數。如果系統的 API 級別低於該屬性中指定的值,Android 系統將阻止用戶安裝應用。
compileSdkVerion:
CompileSdkVersion 指定 Gradle 編譯你的 APP 時使用的 Android API 版本,你的 App 可以使用該版本或者更低版本的 API 特性。簡單來說,如果你的 APP 在開發中需要用到一些比較新的 API 特性,那麼你的 compileSdkVersion 的數值就應該大於或等於相應的 API 級別。
targetSdkVersion:
TargetSdkVersion 按照字面意思理解就是目標 SdkVersion。如果沒有設置,則預設值為minSdkVersion。TargetSdkVersion 是 Android 系統實現「前向相容」的主要手段,當你設置了targetSdkVersion的時候,表示你已經充分測試過了你的App在該目標版本的運行情況(準確的說應該是從 minSdkVersion 到 targetSdkVersion 區間所有的系統版本),除非更新 targetSdkVersion,否則不改變應用的行為。
從文中我們可以看出需要我們把compileSdkVerion版本設置為 34,Gradle 目前的7.3.0只支持到33,所以Gradle版本也要修改
我們先修改compileSdkVerion同時把targetSdkVersion也修改到最新:
目錄為:android/app/build.gradle
修改後記得保存。
然後修改gradle版本,
首先查看一下gradle對安卓的支持版本
https://docs.gradle.org/current/userguide/compatibility.html
最新的穩定版應該是8.2,我們設置8.2試一下
目錄:
gradle/wrapper/gradle-wrapper.properties
保存,然後去運行安卓項目,此時vscode會去下載gradle,要等會,如果下載失敗可以通過Andriod Studio來選擇gradle版本,操作如下:
點擊ok,Andriod Studio會自動下載gradle。
再次運行就可以了。
本人原來是ios開發,對安卓開發的配置可能存在一些問題,如果文章存在問題,請大家幫忙指出,謝謝。
官方文檔:
https://developer.android.com/ndk/guides/sdk-versions?hl=zh-cn
https://developer.android.com/guide/topics/manifest/uses-sdk-element?hl=zh-cn
https://developer.android.com/build/migrate-to-catalogs?hl=zh-cn
https://docs.gradle.org/current/userguide/compatibility.html
部分內容引用:
https://blog.csdn.net/crazestone0614/article/details/127979666