Running Android Studio 2.3.3, I am told Error:Execution failed for task ':app:compileDebugAidl'. > java.lang.IllegalStateException: aidl is missing -
https://i.stack.imgur.com/ldvqx.png
running android studio 2.3.3, if attempt run program, told aidl missing. have read through other questions, seeing posts 2015. attempt follow instructions , downgrade "compile sdk version" , downgrade "build tools version." however, not given other compile sdk version options other 7.1.1 nougat. build tools versions offers me 25.0.3 or 26.0.1 . error code below. new this, know bit of java , wanted explore bit. i've search hour , half how solve this. maybe dumb. appreciated.
apply plugin: 'com.android.application' android { compilesdkversion 25 buildtoolsversion '25.0.3' defaultconfig { applicationid "com.example.tarun.myapplication" minsdkversion 20 targetsdkversion 25 versioncode 1 versionname "1.0" testinstrumentationrunner "android.support.test.runner.androidjunitrunner" } buildtypes { release { minifyenabled false proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile filetree(include: ['*.jar'], dir: 'libs') androidtestcompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) compile 'com.android.support:appcompat-v7:25.3.1' compile 'com.android.support.constraint:constraint-layout:1.0.2' compile 'com.android.support:design:25.3.1' testcompile 'junit:junit:4.12' }
Comments
Post a Comment