All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.ksoichiro.eclipse.aar.generator.MetaDataFileGenerator.groovy Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
package com.github.ksoichiro.eclipse.aar.generator

abstract class MetaDataFileGenerator {
    static final ADT_PACKAGE = 'com.android.ide.eclipse.adt'
    static final ANDMORE_PACKAGE = 'org.eclipse.andmore'
    boolean andmore
    String toolPackage

    abstract String generateContent(File file)

    boolean shouldOverwrite() {
        true
    }

    void generate(File file) {
        if (file.canonicalFile.exists() && !shouldOverwrite()) {
            return
        }
        toolPackage = andmore ? ANDMORE_PACKAGE : ADT_PACKAGE
        file.text = generateContent(file)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy