I have a problem moving Android projects from Eclipse to Android Studio
Eclipse : 4.2.2
ADT : 22.3
Android SDK Manager : I have all the items under "Tools" installed (from rev 17 to 22.3)
Android Studio : 0.3.2
I have an automatic gradle installation in C:\Users\r0dy.gradle (where wrapper/dists shows a 1.6 and a 1.8)
I also downloaded manually a gradle 1.9 dist.
I export my project using "Generate gradle build files", runs OK.
In Android Studio, if I import with default settings, it says :
You are using an old, unsupported version of Gradle. Please use version 1.8 or greater.
Please point to a supported Gradle version in the project's Gradle settings or in the project's Gradle wrapper (if applicable.)
If I select "Use customizable gradle wrapper" I get :
Could not execute build using Gradle distribution 'http://services.gradle.org/distributions/gradle-1.6-bin.zip'.
Task 'wrapper' not found in root project 'CameraLibrary'.
If I select "Use local gradle distribution" and set "Gradle Home" to my dist path, I get :
Gradle version 1.6 is required. Current version is 1.9
Build file 'D:\workspaces\popfax\CameraLibrary\build.gradle' line: 9
I can't find a way to force Eclipse export to use my 1.9 dist or any other, and after hours of trying, I couldn't find a solution.
Anyone has an idea ?