com.github.utilx.android-assets-journalist
Owner: Krzysztof Karczewski
Plugin that generates android assets list as string resources or source code file
http://github.com/karczews/android-assets-journalist
Sources: http://github.com/karczews/android-assets-journalist
Version 0.11.1 (latest)
0.11.1
Created 09 April 2020.
Plugin that generates android assets list as string resources or source code file
Using the plugins DSL:
plugins {
id("com.github.utilx.android-assets-journalist") version "0.11.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.utilx:android-assets-journalist:0.11.1")
}
}
apply(plugin = "com.github.utilx.android-assets-journalist")
Using the plugins DSL:
plugins {
id "com.github.utilx.android-assets-journalist" version "0.11.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.utilx:android-assets-journalist:0.11.1"
}
}
apply plugin: "com.github.utilx.android-assets-journalist"