├── .gitignore ├── README.md ├── component ├── build.gradle └── src │ ├── main │ ├── groovy │ │ └── com.tangpj.calces │ │ │ ├── AppConfigPlugin.groovy │ │ │ ├── ModulesConfigPlugin.groovy │ │ │ ├── extensions │ │ │ ├── AppConfigExt.groovy │ │ │ ├── AppExt.groovy │ │ │ ├── LibraryExt.groovy │ │ │ └── ModulesExt.groovy │ │ │ └── utils │ │ │ └── ManifestStrategy.groovy │ └── resources │ │ └── META-INF │ │ └── gradle-plugins │ │ ├── calces.appconfig.properties │ │ └── calces.modules.properties │ └── test │ └── groovy │ └── com │ └── tangpj │ └── calces │ └── XmlTest.groovy ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── screen ├── build.gradle └── src │ └── main │ ├── groovy │ └── com │ │ └── tangpj │ │ └── calces │ │ ├── ScreenPlugin.groovy │ │ ├── extensions │ │ ├── DimensExt.groovy │ │ ├── MipmapExt.groovy │ │ └── ScreenExt.groovy │ │ └── utils │ │ ├── DimensConvertHelper.groovy │ │ ├── ImageCheckHelper.groovy │ │ └── MipmapZoomHelper.groovy │ └── resources │ └── META-INF │ └── gradle-plugins │ └── calces.screen.properties └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/README.md -------------------------------------------------------------------------------- /component/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/component/build.gradle -------------------------------------------------------------------------------- /component/src/main/groovy/com.tangpj.calces/AppConfigPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/component/src/main/groovy/com.tangpj.calces/AppConfigPlugin.groovy -------------------------------------------------------------------------------- /component/src/main/groovy/com.tangpj.calces/ModulesConfigPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/component/src/main/groovy/com.tangpj.calces/ModulesConfigPlugin.groovy -------------------------------------------------------------------------------- /component/src/main/groovy/com.tangpj.calces/extensions/AppConfigExt.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/component/src/main/groovy/com.tangpj.calces/extensions/AppConfigExt.groovy -------------------------------------------------------------------------------- /component/src/main/groovy/com.tangpj.calces/extensions/AppExt.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/component/src/main/groovy/com.tangpj.calces/extensions/AppExt.groovy -------------------------------------------------------------------------------- /component/src/main/groovy/com.tangpj.calces/extensions/LibraryExt.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/component/src/main/groovy/com.tangpj.calces/extensions/LibraryExt.groovy -------------------------------------------------------------------------------- /component/src/main/groovy/com.tangpj.calces/extensions/ModulesExt.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/component/src/main/groovy/com.tangpj.calces/extensions/ModulesExt.groovy -------------------------------------------------------------------------------- /component/src/main/groovy/com.tangpj.calces/utils/ManifestStrategy.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/component/src/main/groovy/com.tangpj.calces/utils/ManifestStrategy.groovy -------------------------------------------------------------------------------- /component/src/main/resources/META-INF/gradle-plugins/calces.appconfig.properties: -------------------------------------------------------------------------------- 1 | implementation-class=com.tangpj.calces.AppConfigPlugin -------------------------------------------------------------------------------- /component/src/main/resources/META-INF/gradle-plugins/calces.modules.properties: -------------------------------------------------------------------------------- 1 | implementation-class=com.tangpj.calces.ModulesConfigPlugin -------------------------------------------------------------------------------- /component/src/test/groovy/com/tangpj/calces/XmlTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/component/src/test/groovy/com/tangpj/calces/XmlTest.groovy -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /screen/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/screen/build.gradle -------------------------------------------------------------------------------- /screen/src/main/groovy/com/tangpj/calces/ScreenPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/screen/src/main/groovy/com/tangpj/calces/ScreenPlugin.groovy -------------------------------------------------------------------------------- /screen/src/main/groovy/com/tangpj/calces/extensions/DimensExt.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/screen/src/main/groovy/com/tangpj/calces/extensions/DimensExt.groovy -------------------------------------------------------------------------------- /screen/src/main/groovy/com/tangpj/calces/extensions/MipmapExt.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/screen/src/main/groovy/com/tangpj/calces/extensions/MipmapExt.groovy -------------------------------------------------------------------------------- /screen/src/main/groovy/com/tangpj/calces/extensions/ScreenExt.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/screen/src/main/groovy/com/tangpj/calces/extensions/ScreenExt.groovy -------------------------------------------------------------------------------- /screen/src/main/groovy/com/tangpj/calces/utils/DimensConvertHelper.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/screen/src/main/groovy/com/tangpj/calces/utils/DimensConvertHelper.groovy -------------------------------------------------------------------------------- /screen/src/main/groovy/com/tangpj/calces/utils/ImageCheckHelper.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/screen/src/main/groovy/com/tangpj/calces/utils/ImageCheckHelper.groovy -------------------------------------------------------------------------------- /screen/src/main/groovy/com/tangpj/calces/utils/MipmapZoomHelper.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/screen/src/main/groovy/com/tangpj/calces/utils/MipmapZoomHelper.groovy -------------------------------------------------------------------------------- /screen/src/main/resources/META-INF/gradle-plugins/calces.screen.properties: -------------------------------------------------------------------------------- 1 | implementation-class=com.tangpj.calces.ScreenPlugin -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangpj/calces-gradle-plugin/HEAD/settings.gradle --------------------------------------------------------------------------------