Error:A problem was found with the configuration of task ':app:packageDebug' 問題解決

丿灬安之若死發表於2017-10-26
以前的老專案,匯入到AndroidStudio 2.2.2時,報錯:

[html] view plain copy
  1. Error:A problem was found with the configuration of task ':app:packageDebug'.  
  2. > File 'E:\AndroidStudio\work\AUWoQu\YingYongShiChang\app\build\intermediates\res\resources-debug-stripped.ap_' specified for property 'resourceFile' does not exist.  

解決辦法 :

開啟app的build.gradle

將shrinkResources 設定為false


[html] view plain copy
  1. buildTypes {  
  2.         release {  
  3.             minifyEnabled true  
  4.             shrinkResources false  
  5.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'  
  6.         }  
  7.         debug {  
  8.             //開啟程式碼混淆  
  9.             minifyEnabled false  
  10.             // 移除無用的resource檔案  
  11.             shrinkResources false  
  12.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'  
  13.         }  
  14.     }  

相關文章