Tool for procedural text generation
StringProcessor is a tool for procedural string generation.
Alternatively Github Packages
repositories {
maven { url 'https://jitpack.io' }
}
repositories {
maven {
url = uri("https://maven.pkg.github.com/arnoid/string.processor")
credentials {
username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
}
}
}
dependencies {
implementation 'com.github.arnoid:string.processor:x.x.x'
}