Hi, I want to convert ant script to gradle. Is there a tool for automatic conversion?
I tried Android Studio and found out that if you import the project using ant build, it asks you that it should hide it before 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 a converted gradle script or any other way to do this?
source
share