真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何解決升級AndroidStudio3.0時遇到的幾個問題

這篇文章主要為大家展示了“如何解決升級Android Studio3.0時遇到的幾個問題”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“如何解決升級Android Studio3.0時遇到的幾個問題”這篇文章吧。

目前成都創(chuàng)新互聯(lián)已為上千家的企業(yè)提供了網(wǎng)站建設(shè)、域名、雅安服務(wù)器托管、網(wǎng)站運(yùn)營、企業(yè)網(wǎng)站設(shè)計(jì)、卓尼網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。

1.gradle打包,自定義apk名稱代碼報錯(Cannot set the value of read-only property 'outputFile' )

報錯

Error:(56, 0) Cannot set the value of read-only property 'outputFile' for ApkVariantOutputImpl_Decorated{apkData=Main{type=MAIN, fullName=debug, filters=[]}} of type com.android.build.gradle.internal.api.ApkVariantOutputImpl.
Open File

解決 :修改文件名代碼請這樣寫

android.applicationVariants.all { variant ->
        variant.outputs.all {
          outputFileName = "xinlebao_${defaultConfig.versionName}_${releaseTime()}.apk"
        }
      }

2. AAPT2 編譯報錯 AAPT2 error

報錯

Error:java.util.concurrent.ExecutionException: com.android.tools.aapt2.Aapt2Exception: AAPT2 error: check logs for details

解決:在gradle.properties中關(guān)閉APPT2 編譯

android.enableAapt2=false

注:如果是eclipse轉(zhuǎn)到as上的項(xiàng)目,可能沒有g(shù)radle.properties文件,請?jiān)陧?xiàng)目根目錄中手動創(chuàng)建

3.apt插件問題(Error:Cannot choose between the following configurations of project :mylibrary:)

報錯:

Error:Cannot choose between the following configurations of project :mylibrary:

- debugApiElements
- debugRuntimeElements
- releaseApiElements
- releaseRuntimeElements
  All of them match the consumer attributes:

解決

//1.在project的build.gradle中刪除
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
//2.在module的build.gradle中刪除
apply plugin: 'android-apt'
//3.將module的build.gradle文件中的dependency
apt 'com.jakewharton:butterknife-compiler:8.1.0'
//改為
annotationProcessor 'com.jakewharton:butterknife-compiler:8.1.0'

其他使用apt的依賴,也要這樣更改。

以上是“如何解決升級Android Studio3.0時遇到的幾個問題”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


本文名稱:如何解決升級AndroidStudio3.0時遇到的幾個問題
文章位置:http://weahome.cn/article/pdhgcd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部