├── .gitignore ├── LICENSE.md ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── libs └── jllk-cda-1.0.0.jar ├── settings.gradle └── src └── main └── groovy └── com └── github └── jllk └── gradle ├── JLLKLog.groovy ├── JLLKMainDexListPlugin.groovy ├── JLLKMainDexListPluginExtension.groovy └── JLLKMainDexListTask.groovy /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLLK/gradle-android-maindexlist-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLLK/gradle-android-maindexlist-plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLLK/gradle-android-maindexlist-plugin/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | version=1.0.0 -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLLK/gradle-android-maindexlist-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLLK/gradle-android-maindexlist-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLLK/gradle-android-maindexlist-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLLK/gradle-android-maindexlist-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /libs/jllk-cda-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLLK/gradle-android-maindexlist-plugin/HEAD/libs/jllk-cda-1.0.0.jar -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'gradle-android-maindexlist-plugin' -------------------------------------------------------------------------------- /src/main/groovy/com/github/jllk/gradle/JLLKLog.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLLK/gradle-android-maindexlist-plugin/HEAD/src/main/groovy/com/github/jllk/gradle/JLLKLog.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/jllk/gradle/JLLKMainDexListPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLLK/gradle-android-maindexlist-plugin/HEAD/src/main/groovy/com/github/jllk/gradle/JLLKMainDexListPlugin.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/jllk/gradle/JLLKMainDexListPluginExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLLK/gradle-android-maindexlist-plugin/HEAD/src/main/groovy/com/github/jllk/gradle/JLLKMainDexListPluginExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/github/jllk/gradle/JLLKMainDexListTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JLLK/gradle-android-maindexlist-plugin/HEAD/src/main/groovy/com/github/jllk/gradle/JLLKMainDexListTask.groovy --------------------------------------------------------------------------------