久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

com.android.ide.common.process.ProcessException: Failed to execute aapt

 MLLWF 2017-12-25

情景:創(chuàng)建項目后報錯

com.android.ide.common.process.ProcessException:Failed to execute aapt




原因:在build.gradle文件中,

compileSdkVersion 和buildToolsVersion 不匹配

解決:

匹配 compileSdkVersion 和buildToolsVersion 

通過SDK Manager工具安裝最新的sdk版本,,和buildToos的版本

修改

  1. apply plugin: 'com.android.application'  
  2.   
  3. android {  
  4.     compileSdkVersion 23  
  5.     buildToolsVersion '23.0.2'  
  6.     defaultConfig {  
  7.         applicationId "com.example.hp.myapplication2"  
  8.         minSdkVersion 15  
  9.         targetSdkVersion 21  
  10.         versionCode 1  
  11.         versionName "1.0"  
  12.         testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"  
  13.     }  
  14.     buildTypes {  
  15.         release {  
  16.             minifyEnabled false  
  17.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'  
  18.         }  
  19.     }  
  20. }  
  21.   
  22. dependencies {  
  23.     compile fileTree(include: ['*.jar'], dir: 'libs')  
  24.     androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {  
  25.         exclude group: 'com.android.support', module: 'support-annotations'  
  26.     })  
  27.     compile 'com.android.support:appcompat-v7:23.4.0'  
  28.     compile 'com.android.support:design:23.4.0'  
  29.     compile 'com.android.support.constraint:constraint-layout:1.0.0-beta4'  
  30.     testCompile 'junit:junit:4.12'  
  31. }  

參考資料:

Android Studio創(chuàng)建完android項目編譯的時候報錯

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



    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,,謹防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點擊一鍵舉報,。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多