how to use old android studio project

Solutions on MaxInterview for how to use old android studio project by the best coders in the world

showing results for - "how to use old android studio project"
York
15 Jun 2017
1Open up this file in your project:
2
3<project>/gradle/wrapper/gradle-wrapper.properties
4
5Edit the distributionUrl line and set it too:
6
7distributionUrl=http\://services.gradle.org/distributions/gradle-1.8-all.zip
8
9Rebuild your project.
10
11</project>
Dusty
21 Sep 2016
1File->Project Structure->Project pane->"Android plugin version".
2
3Make sure you don't confuse the Gradle version with the Android plugin version. The former is the build system itself, the latter is the plugin to the build system that knows how to build Android projects
4
5-----------
6But when using the gradle plugin 0.7.+, Android Studio needs Gradle 1.8. So, you have to update Gradle from 1.7 to 1.8. This was done by going to Tools -> Android -> Sync Project with Gradle Files It forces Android Studio to give out Error message you see on http://tools.android.com/recent
Emie
30 Aug 2017
1Look 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").
Lucia
20 Oct 2020
1dependencies {
2        classpath 'com.android.tools.build:gradle:1.3.0'
3
4        // NOTE: Do not place your application dependencies here; they belong
5        // in the individual module build.gradle files
6    }