發表文章

目前顯示的是有「DSL」標籤的文章

200115 Gradle DSL method not found: '1.3.61()'

話說 今天在練習新增 Module 新增的 Module 類別為 Phone & Tablet Module 新增完後 在 Gradle sync 時 出現以下錯誤訊息 Gradle DSL method not found: '1.3.61()' Possible causes: The project 'xxx' may be using a version of the Android Gradle plug-in that does not contain the method (e.g. 'testCompile' was added in 1.1.0). Upgrade plugin to version 3.5.3 and sync project The project 'xxx' may be using a version of Gradle that does not contain the method. Open Gradle wrapper file The build file may be missing a Gradle plugin. Apply Gradle plugin ----- 東找西找 找不到解決方案 ----- 後來發現 Gradle 有以下這樣的情況 buildscript { ext.kotlin_version = '1.3.61' '1.3.50' ----- 在新增 Module 時 會把 '新版號' 插入? 而不是取代!? ----- 後來把後面的 '1.3.50' 刪除後再 [Try again] 就過了 ----- 以上供各位參考