L2L (Language To Language: Program conversion command) Plugin Interfaces
Please follow the below steps to develop your L2L plugin.
Your application's name need follow the naming rule.
The naming rule is simple. Please use l2l-XxxxxToYyyyy-plugin if you covert Xxxxx language to Yyyyy language.
You add the following configuration to your build.gradle file. ${version} is the release version.
repositories {
jcenter()
}
dependencies {
compile "com.keidrun.l2l-face:l2l-face:${version}"
}Or
repositories {
jcenter()
maven {
url "http://dl.bintray.com/keidrun/l2l-face"
}
}
dependencies {
compile "com.keidrun.l2l-face:l2l-face:${version}"
}You need implement the following interface as the L2L plugin.
com.keidrun.l2l.face.plugin.ConvertPluginPlease publish your L2L plugin to Jcenter or Maven Central Repository or both.