1. 程式人生 > >Android Studio 常見的問題

Android Studio 常見的問題

build.gradle檔案的程式碼片段:

android {

......

    //打包後應用名稱
    applicationVariants.all { variant ->
        variant.outputs.each { output ->
            def outputFile = output.outputFile
            def fileName
            if (outputFile != null && outputFile.name.endsWith('.apk')) {
                if
(variant.buildType.name.equals('release')) { fileName = "XXX_v${defaultConfig.versionName}.apk" } else if (variant.buildType.name.equals('debug')) { fileName = "XXX_v${defaultConfig.versionName}_debug.apk" } output.
outputFile = new File(outputFile.parent, fileName) } } } }

2.android studio  不能輸入中文

將以下內容新增到androidstudo/bin,studio.sh的第2行
export [email protected]=fcitx

export QT_IM_MODULE=fcitx

1.隨便找一個你能執行的as專案

2.開啟gradle-wrapper.properties,檔案目錄:專案/gradle/wrapper/gradle-wrapper.properties

3.複製distributionUrl這一整行的內容,eg: distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip

4.替換你要匯入的專案的gradle-wrapper.properties檔案的distributionUrl這一行

5.再重啟as,匯入專案就可以了



相關推薦

android--------Android Studio常見問題以及解決方式

ids reat 代碼自動提示 ack pre 詳細信息 不清楚 jar jdk1.7 gradle build的時候出現的問題: Error:Execution failed for task ‘:app:packageDebug‘. Duplicate files c

android studio 常見錯誤解決積累

1、新安裝的Android Studio  執行專案是,報錯 解決:File——>Setting -——>Build,Execution——>Instant Run  把Enable Instant Run  去掉打鉤就行了 2

Android Studio 常見問題小結

   一、APK打包出現 AAPT2 error: check logs for details.錯誤     繼續學習Android,打包的時候出現了AAPT2 error: check logs for details.錯誤,不清楚什麼問題,網上找到了

android studio 常見依賴

//---------------------------------------------------------------------------------------- compile 'com.android.support:appcom

Android Studio 常見檔案說明

.gradle ——>gradle 執行以後生成的快取資料夾 .idea ——>是android studio 工程開啟以後生成的工作環境配置資料夾。 app 資料夾是application module,其中包含你的原始碼src、資原始檔res、Assets 等必須的檔案。

Android Studio常見問題(+)

Android Studio找不到FragmentActivity類 右擊專案——》open module settings——》選擇第五個選項卡“Dependencies”——》點選加號——》選擇第一個Library dependency ——》我選擇的V4的

Android Studio 常見錯誤

1、Could not find intellij-core.jar (com.android.tools.external.com-intellij:intellij-core:26.0.1). Searched in the following locations:  

Android studio 常見錯誤以及問題

1.dexDebug ExecException finished with non-zero exit value 2 全bug日誌如下: (Error:Execution failed for task ':app:dexDebug'. > com.andro

Android Studio 常見問題

最近,Android Studio 更新到後,遇到了一些問題,記錄一下。 Android Studio 配置 Help -> Edit Custom VM Option -> studio.vmoptions檔案 # custo

android studio 常見問題解決

1 設定libs  sourceSets { main { jniLibs.srcDirs = ['libs'] } } }

android studio常見的執行錯誤總結

開發中遇到的編譯問題彙總:(1.)java.lang.RuntimeException:Unable to start activity ComponentInfo{com.yhy.testviewdemo/com.yhy.testviewdemo.activity.Bitm

Android Studio常見問題整理

1、andriod gradle外掛版本過低。 出錯位置: dependencies{       classpath 'com.android.tools.build:gradle:0.10.2'   }   提示資訊:You must use a newer

Android Studio 常見 Build 問題 Error:failed to find Build Tools revision 23.0.2

問題一 有時候從 Github 上拷貝人家的工程,執行會出現各種依賴包、版本包問題。 修改 build.gradle 在專案的 build.gradle 裡面設定,注意有兩個build.gradle,最好都注意一下。把build.gradle裡面的

Android Studio常見問題彙總

一、Android Studio編碼問題 (1)編譯專案,出現故障gradle: 警告:編碼 EUC_CN 的不可對映字元。 解決方案: tasks.withType(Compile) { options.encoding = "UTF-8" } (2)如果提示包含

Android Studio常見錯誤解決方案

最近一直沒有時間寫部落格了(加班狗不解釋),一直想把最近在學專案的時候遇到的幾個問題想總結一下,方便他人少走彎路,也方便自己記錄一下自己走過的坑,以表達對技術的追求,好了廢話不多說,直接上問題。 1、

Android Studio常見錯誤之:Rendering Problems/The following classes could not be instantiated

被這個問題折磨的差點就要對Android Studio說拜拜了。好在強迫症又犯了,最終把問題解決。 首先詳細描述一下遇到的問題: 在Android Studio Project中新建module時,第一個module一切正常,但建立第二個module開啟XM;佈局檔案時出錯

Android Studio 常見的問題

build.gradle檔案的程式碼片段: android { ...... //打包後應用名稱 applicationVariants.all { variant -> variant.outputs.each { out

Android studio安裝配置常見問題及其解決方案

fault 末尾 clas 網絡 tools.jar 編輯 art 添加 http 來自:https://jingyan.baidu.com/article/e9fb46e170287a7520f7665c.html  Android studio 是目前

android studio 軟件常見問題

one 技術分享 splay bottom isp title wid ref logs xml文件沒有智能提示 在網上看到說是去掉省電模式就可以了 然後我試了一下並不能解決, 最終我是這麽解決的 android studio 軟件常見問題

android studio使用要點及常見錯誤

1、主專案跟他的依賴lib要放在同一個目錄才能在eclipse中export 2、匯入eclipse中匯出的專案到studio後的配置: (1)開啟工作空間目錄下的 gradle –> wrapper –> gradle-wrapper.properties 。修改一下