sepack
Version:
Simple cli tool for android project. Generate android project base on template kotlin mvvm, debug and install project without Android Studio.
43 lines • 1.22 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PackageSetup = exports.Dependencies = exports.Template = exports.VersionApi = exports.SepackConfig = void 0;
class SepackConfig {
constructor(templates) {
this.templates = templates;
}
}
exports.SepackConfig = SepackConfig;
class VersionApi {
constructor(name, version, templates) {
this.name = name;
this.version = version;
this.templates = templates;
}
}
exports.VersionApi = VersionApi;
class Template {
constructor(name, url, branch) {
this.name = name;
this.url = url;
this.branch = branch;
}
}
exports.Template = Template;
class Dependencies {
constructor(group, artifact, description, version) {
this.group = group;
this.artifact = artifact;
this.description = description;
this.version = version;
}
}
exports.Dependencies = Dependencies;
class PackageSetup {
constructor(projectName, packageName, template) {
this.projectName = projectName;
this.packageName = packageName;
this.template = template;
}
}
exports.PackageSetup = PackageSetup;
//# sourceMappingURL=model.js.map