├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── jarRepositories.xml └── misc.xml ├── apkrename-plugin ├── .DS_Store ├── .gitattributes ├── .gitignore ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ └── main │ └── groovy │ └── com │ └── lenebf │ └── plugin │ └── ApkRenamePlugin.groovy ├── app ├── .DS_Store ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── lenebf │ │ └── demo │ │ └── hello_plugin │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── lenebf │ │ │ └── demo │ │ │ └── hello_plugin │ │ │ └── ScrollingActivity.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_scrolling.xml │ │ └── content_scrolling.xml │ │ ├── menu │ │ └── menu_scrolling.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── values-night │ │ └── themes.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── lenebf │ └── demo │ └── hello_plugin │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle ├── .DS_Store └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── hello-plugin ├── .DS_Store ├── .gitattributes ├── .gitignore ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ └── main │ └── groovy │ └── com │ └── lenebf │ └── plugin │ └── HelloPlugin.groovy ├── repo ├── .DS_Store └── com │ ├── .DS_Store │ └── lenebf │ ├── .DS_Store │ └── plugin │ ├── .DS_Store │ ├── apk-rename │ ├── .DS_Store │ ├── 0.0.1 │ │ ├── apk-rename-0.0.1.jar │ │ ├── apk-rename-0.0.1.jar.md5 │ │ ├── apk-rename-0.0.1.jar.sha1 │ │ ├── apk-rename-0.0.1.jar.sha256 │ │ ├── apk-rename-0.0.1.jar.sha512 │ │ ├── apk-rename-0.0.1.module │ │ ├── apk-rename-0.0.1.module.md5 │ │ ├── apk-rename-0.0.1.module.sha1 │ │ ├── apk-rename-0.0.1.module.sha256 │ │ ├── apk-rename-0.0.1.module.sha512 │ │ ├── apk-rename-0.0.1.pom │ │ ├── apk-rename-0.0.1.pom.md5 │ │ ├── apk-rename-0.0.1.pom.sha1 │ │ ├── apk-rename-0.0.1.pom.sha256 │ │ └── apk-rename-0.0.1.pom.sha512 │ ├── maven-metadata.xml │ ├── maven-metadata.xml.md5 │ ├── maven-metadata.xml.sha1 │ ├── maven-metadata.xml.sha256 │ └── maven-metadata.xml.sha512 │ └── hello │ ├── .DS_Store │ ├── 0.0.1 │ ├── .DS_Store │ ├── hello-0.0.1.jar │ ├── hello-0.0.1.jar.md5 │ ├── hello-0.0.1.jar.sha1 │ ├── hello-0.0.1.jar.sha256 │ ├── hello-0.0.1.jar.sha512 │ ├── hello-0.0.1.module │ ├── hello-0.0.1.module.md5 │ ├── hello-0.0.1.module.sha1 │ ├── hello-0.0.1.module.sha256 │ ├── hello-0.0.1.module.sha512 │ ├── hello-0.0.1.pom │ ├── hello-0.0.1.pom.md5 │ ├── hello-0.0.1.pom.sha1 │ ├── hello-0.0.1.pom.sha256 │ └── hello-0.0.1.pom.sha512 │ ├── maven-metadata.xml │ ├── maven-metadata.xml.md5 │ ├── maven-metadata.xml.sha1 │ ├── maven-metadata.xml.sha256 │ └── maven-metadata.xml.sha512 └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /apkrename-plugin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/apkrename-plugin/.DS_Store -------------------------------------------------------------------------------- /apkrename-plugin/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/apkrename-plugin/.gitattributes -------------------------------------------------------------------------------- /apkrename-plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/apkrename-plugin/.gitignore -------------------------------------------------------------------------------- /apkrename-plugin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/apkrename-plugin/build.gradle -------------------------------------------------------------------------------- /apkrename-plugin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/apkrename-plugin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /apkrename-plugin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/apkrename-plugin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /apkrename-plugin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/apkrename-plugin/gradlew -------------------------------------------------------------------------------- /apkrename-plugin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/apkrename-plugin/gradlew.bat -------------------------------------------------------------------------------- /apkrename-plugin/src/main/groovy/com/lenebf/plugin/ApkRenamePlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/apkrename-plugin/src/main/groovy/com/lenebf/plugin/ApkRenamePlugin.groovy -------------------------------------------------------------------------------- /app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/.DS_Store -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/lenebf/demo/hello_plugin/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/androidTest/java/com/lenebf/demo/hello_plugin/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/lenebf/demo/hello_plugin/ScrollingActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/java/com/lenebf/demo/hello_plugin/ScrollingActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_scrolling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/layout/activity_scrolling.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_scrolling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/layout/content_scrolling.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_scrolling.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/menu/menu_scrolling.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/test/java/com/lenebf/demo/hello_plugin/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/app/src/test/java/com/lenebf/demo/hello_plugin/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/gradle/.DS_Store -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/gradlew.bat -------------------------------------------------------------------------------- /hello-plugin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/hello-plugin/.DS_Store -------------------------------------------------------------------------------- /hello-plugin/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/hello-plugin/.gitattributes -------------------------------------------------------------------------------- /hello-plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/hello-plugin/.gitignore -------------------------------------------------------------------------------- /hello-plugin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/hello-plugin/build.gradle -------------------------------------------------------------------------------- /hello-plugin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/hello-plugin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /hello-plugin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/hello-plugin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /hello-plugin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/hello-plugin/gradlew -------------------------------------------------------------------------------- /hello-plugin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/hello-plugin/gradlew.bat -------------------------------------------------------------------------------- /hello-plugin/src/main/groovy/com/lenebf/plugin/HelloPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/hello-plugin/src/main/groovy/com/lenebf/plugin/HelloPlugin.groovy -------------------------------------------------------------------------------- /repo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/.DS_Store -------------------------------------------------------------------------------- /repo/com/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/.DS_Store -------------------------------------------------------------------------------- /repo/com/lenebf/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/.DS_Store -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/.DS_Store -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/apk-rename/.DS_Store -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.jar -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.jar.md5: -------------------------------------------------------------------------------- 1 | 3ab81b49ffc767947a751259b4fd961a -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.jar.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.jar.sha1 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.jar.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.jar.sha256 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.jar.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.jar.sha512 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.module -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.module.md5: -------------------------------------------------------------------------------- 1 | a4c4da6056d0b3572200cda3a5c68c3a -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.module.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.module.sha1 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.module.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.module.sha256 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.module.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.module.sha512 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.pom -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.pom.md5: -------------------------------------------------------------------------------- 1 | c277c1fe7200e5f1a763b0ee7f4dadbf -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.pom.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.pom.sha1 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.pom.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.pom.sha256 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.pom.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/apk-rename/0.0.1/apk-rename-0.0.1.pom.sha512 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/maven-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/apk-rename/maven-metadata.xml -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 7523af01ca17a8ce109c0075bae41de6 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/apk-rename/maven-metadata.xml.sha1 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/maven-metadata.xml.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/apk-rename/maven-metadata.xml.sha256 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/apk-rename/maven-metadata.xml.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/apk-rename/maven-metadata.xml.sha512 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/hello/.DS_Store -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/0.0.1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/hello/0.0.1/.DS_Store -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.jar -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.jar.md5: -------------------------------------------------------------------------------- 1 | 3fbbc86fbacf424b899857e628b836f8 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.jar.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.jar.sha1 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.jar.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.jar.sha256 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.jar.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.jar.sha512 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.module -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.module.md5: -------------------------------------------------------------------------------- 1 | 976e490003fd56b4f5f8a07892def068 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.module.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.module.sha1 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.module.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.module.sha256 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.module.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.module.sha512 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.pom -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.pom.md5: -------------------------------------------------------------------------------- 1 | 555dad691eae5729f9bcfd4c1e418c63 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.pom.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.pom.sha1 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.pom.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.pom.sha256 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.pom.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/hello/0.0.1/hello-0.0.1.pom.sha512 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/maven-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/hello/maven-metadata.xml -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 85b013e6328ac07de439ecc73fcd81dd -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/hello/maven-metadata.xml.sha1 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/maven-metadata.xml.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/hello/maven-metadata.xml.sha256 -------------------------------------------------------------------------------- /repo/com/lenebf/plugin/hello/maven-metadata.xml.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/repo/com/lenebf/plugin/hello/maven-metadata.xml.sha512 -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolf1/GradlePluginTutorial/HEAD/settings.gradle --------------------------------------------------------------------------------