Android Studio Update (1.5 To 2.2.3) Breaks Project
So i've updated my Android Studio from Version 1.5 to 2.2.3 and this completely broke my project. I'm pretty new at programming and my app worked just fine before, but now, every s
Solution 1:
Try doing this in build.gradle
buildscript {repositories {jcenter()}dependencies {classpath 'com.android.tools.build:gradle:2.2.3'}}
Post a Comment for "Android Studio Update (1.5 To 2.2.3) Breaks Project"