how to access old version project i android studio code example
Example 1: how to use old android studio project
Look in the SDK Manager what is your highest Android SDK Build-tools version, and copy this version number in your project build.gradle file, in the android/buildToolsVersion property (for me, version was "18.1.1").
Example 2: how to use old android studio project
Open up this file in your project:
<project>/gradle/wrapper/gradle-wrapper.properties
Edit the distributionUrl line and set it too:
distributionUrl=http\://services.gradle.org/distributions/gradle-1.8-all.zip
Rebuild your project.
</project>