where to change the project configuration into the updated build tool revision in android studio? -


in android studio project, have pre-installed build tools 24.3.2 , 22, sample project going run requires build tools revision 21.1.2

error:failed find build tools revision 21.1.2 

i wonder not install build tools revision 21.1.2 , change project configuration fit 24.3.2 or 22.

yes, can use updated build tools. , not create problem build gradle project.

just modify build.gradle app module latest build tool version:

android { compilesdkversion 22 buildtoolsversion "24.3.3" //most update version can see in sdk manager  defaultconfig {     applicationid "com.support.android.designlibdemo"     minsdkversion 9     targetsdkversion 22     versioncode 1     versionname "1.0" } buildtypes {     release {         minifyenabled false         proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro'     } } } 

note: making life easier developers feels better share version of build tool used while smoothly deployed project. easier report bugs in more specific way.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -