Hi I want to convert ant script to gradle.Is there a tool for automatic conversion?
I was trying Android Studio and found out that if you import a project with ant build it asks you that shall it covert it to gradle.Even when you click yes,it generates a gradle script containing
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {`
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.8.+'
    }
}
allprojects {
    repositories {
        mavenCentral()
    }
}
Does anyone know where I can find the converted gradle script,or any other method to do so?
 
     
    