├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── vinctor │ │ └── autodimens │ │ └── MainActivity.java │ └── res │ ├── layout │ └── activity_main.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-1065x720 │ ├── dimen_h.xml │ ├── dimen_w.xml │ └── do-not-add-any-file.xml │ ├── values-1151x720 │ ├── dimen_h.xml │ ├── dimen_w.xml │ └── do-not-add-any-file.xml │ ├── values-1151x768 │ ├── dimen_h.xml │ ├── dimen_w.xml │ └── do-not-add-any-file.xml │ ├── values-1151x800 │ ├── dimen_h.xml │ ├── dimen_w.xml │ └── do-not-add-any-file.xml │ ├── values-1598x1080 │ ├── dimen_h.xml │ ├── dimen_w.xml │ └── do-not-add-any-file.xml │ ├── values-1630x1080 │ ├── dimen_h.xml │ ├── dimen_w.xml │ └── do-not-add-any-file.xml │ ├── values-1727x1080 │ ├── dimen_h.xml │ ├── dimen_w.xml │ └── do-not-add-any-file.xml │ ├── values-2303x1440 │ ├── dimen_h.xml │ ├── dimen_w.xml │ └── do-not-add-any-file.xml │ ├── values-719x480 │ ├── dimen_h.xml │ ├── dimen_w.xml │ └── do-not-add-any-file.xml │ ├── values-768x480 │ ├── dimen_h.xml │ ├── dimen_w.xml │ └── do-not-add-any-file.xml │ ├── values-863x540 │ ├── dimen_h.xml │ ├── dimen_w.xml │ └── do-not-add-any-file.xml │ ├── values-921x768 │ ├── dimen_h.xml │ ├── dimen_w.xml │ └── do-not-add-any-file.xml │ └── values │ ├── colors.xml │ ├── dimen_h.xml │ ├── dimen_w.xml │ ├── strings.xml │ └── styles.xml ├── autodimens ├── .gitignore ├── build.gradle └── src │ └── main │ ├── groovy │ └── com │ │ └── vinctor │ │ └── autodimens │ │ ├── AutoDimensTask.groovy │ │ ├── AutoExtension.groovy │ │ ├── PluginImpl.groovy │ │ └── PropertyFinder.groovy │ └── resources │ └── META-INF │ └── gradle-plugins │ └── autodimens.properties ├── files └── umeng.png ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── repo └── com │ └── vinctor │ └── plugin │ └── autodimens │ ├── 1.0.0 │ ├── autodimens-1.0.0.jar │ ├── autodimens-1.0.0.jar.md5 │ ├── autodimens-1.0.0.jar.sha1 │ ├── autodimens-1.0.0.pom │ ├── autodimens-1.0.0.pom.md5 │ └── autodimens-1.0.0.pom.sha1 │ ├── maven-metadata.xml │ ├── maven-metadata.xml.md5 │ └── maven-metadata.xml.sha1 ├── screenshot ├── after.png ├── befor.png ├── build.jpg ├── gradle.png ├── multi.jpg ├── nexus5.jpg └── umeng.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/vinctor/autodimens/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/java/com/vinctor/autodimens/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-1065x720/dimen_h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1065x720/dimen_h.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1065x720/dimen_w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1065x720/dimen_w.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1065x720/do-not-add-any-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1065x720/do-not-add-any-file.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1151x720/dimen_h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1151x720/dimen_h.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1151x720/dimen_w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1151x720/dimen_w.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1151x720/do-not-add-any-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1151x720/do-not-add-any-file.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1151x768/dimen_h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1151x768/dimen_h.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1151x768/dimen_w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1151x768/dimen_w.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1151x768/do-not-add-any-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1151x768/do-not-add-any-file.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1151x800/dimen_h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1151x800/dimen_h.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1151x800/dimen_w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1151x800/dimen_w.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1151x800/do-not-add-any-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1151x800/do-not-add-any-file.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1598x1080/dimen_h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1598x1080/dimen_h.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1598x1080/dimen_w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1598x1080/dimen_w.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1598x1080/do-not-add-any-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1598x1080/do-not-add-any-file.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1630x1080/dimen_h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1630x1080/dimen_h.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1630x1080/dimen_w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1630x1080/dimen_w.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1630x1080/do-not-add-any-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1630x1080/do-not-add-any-file.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1727x1080/dimen_h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1727x1080/dimen_h.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1727x1080/dimen_w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1727x1080/dimen_w.xml -------------------------------------------------------------------------------- /app/src/main/res/values-1727x1080/do-not-add-any-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-1727x1080/do-not-add-any-file.xml -------------------------------------------------------------------------------- /app/src/main/res/values-2303x1440/dimen_h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-2303x1440/dimen_h.xml -------------------------------------------------------------------------------- /app/src/main/res/values-2303x1440/dimen_w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-2303x1440/dimen_w.xml -------------------------------------------------------------------------------- /app/src/main/res/values-2303x1440/do-not-add-any-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-2303x1440/do-not-add-any-file.xml -------------------------------------------------------------------------------- /app/src/main/res/values-719x480/dimen_h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-719x480/dimen_h.xml -------------------------------------------------------------------------------- /app/src/main/res/values-719x480/dimen_w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-719x480/dimen_w.xml -------------------------------------------------------------------------------- /app/src/main/res/values-719x480/do-not-add-any-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-719x480/do-not-add-any-file.xml -------------------------------------------------------------------------------- /app/src/main/res/values-768x480/dimen_h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-768x480/dimen_h.xml -------------------------------------------------------------------------------- /app/src/main/res/values-768x480/dimen_w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-768x480/dimen_w.xml -------------------------------------------------------------------------------- /app/src/main/res/values-768x480/do-not-add-any-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-768x480/do-not-add-any-file.xml -------------------------------------------------------------------------------- /app/src/main/res/values-863x540/dimen_h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-863x540/dimen_h.xml -------------------------------------------------------------------------------- /app/src/main/res/values-863x540/dimen_w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-863x540/dimen_w.xml -------------------------------------------------------------------------------- /app/src/main/res/values-863x540/do-not-add-any-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-863x540/do-not-add-any-file.xml -------------------------------------------------------------------------------- /app/src/main/res/values-921x768/dimen_h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-921x768/dimen_h.xml -------------------------------------------------------------------------------- /app/src/main/res/values-921x768/dimen_w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-921x768/dimen_w.xml -------------------------------------------------------------------------------- /app/src/main/res/values-921x768/do-not-add-any-file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values-921x768/do-not-add-any-file.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimen_h.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values/dimen_h.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimen_w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values/dimen_w.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /autodimens/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /autodimens/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/autodimens/build.gradle -------------------------------------------------------------------------------- /autodimens/src/main/groovy/com/vinctor/autodimens/AutoDimensTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/autodimens/src/main/groovy/com/vinctor/autodimens/AutoDimensTask.groovy -------------------------------------------------------------------------------- /autodimens/src/main/groovy/com/vinctor/autodimens/AutoExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/autodimens/src/main/groovy/com/vinctor/autodimens/AutoExtension.groovy -------------------------------------------------------------------------------- /autodimens/src/main/groovy/com/vinctor/autodimens/PluginImpl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/autodimens/src/main/groovy/com/vinctor/autodimens/PluginImpl.groovy -------------------------------------------------------------------------------- /autodimens/src/main/groovy/com/vinctor/autodimens/PropertyFinder.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/autodimens/src/main/groovy/com/vinctor/autodimens/PropertyFinder.groovy -------------------------------------------------------------------------------- /autodimens/src/main/resources/META-INF/gradle-plugins/autodimens.properties: -------------------------------------------------------------------------------- 1 | implementation-class=com.vinctor.autodimens.PluginImpl -------------------------------------------------------------------------------- /files/umeng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/files/umeng.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/gradlew.bat -------------------------------------------------------------------------------- /repo/com/vinctor/plugin/autodimens/1.0.0/autodimens-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/repo/com/vinctor/plugin/autodimens/1.0.0/autodimens-1.0.0.jar -------------------------------------------------------------------------------- /repo/com/vinctor/plugin/autodimens/1.0.0/autodimens-1.0.0.jar.md5: -------------------------------------------------------------------------------- 1 | d9cc73367fb417ab672c555cb6fb7a3d -------------------------------------------------------------------------------- /repo/com/vinctor/plugin/autodimens/1.0.0/autodimens-1.0.0.jar.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/repo/com/vinctor/plugin/autodimens/1.0.0/autodimens-1.0.0.jar.sha1 -------------------------------------------------------------------------------- /repo/com/vinctor/plugin/autodimens/1.0.0/autodimens-1.0.0.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/repo/com/vinctor/plugin/autodimens/1.0.0/autodimens-1.0.0.pom -------------------------------------------------------------------------------- /repo/com/vinctor/plugin/autodimens/1.0.0/autodimens-1.0.0.pom.md5: -------------------------------------------------------------------------------- 1 | d81382599009ef9c272e0c1ab7e728ae -------------------------------------------------------------------------------- /repo/com/vinctor/plugin/autodimens/1.0.0/autodimens-1.0.0.pom.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/repo/com/vinctor/plugin/autodimens/1.0.0/autodimens-1.0.0.pom.sha1 -------------------------------------------------------------------------------- /repo/com/vinctor/plugin/autodimens/maven-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/repo/com/vinctor/plugin/autodimens/maven-metadata.xml -------------------------------------------------------------------------------- /repo/com/vinctor/plugin/autodimens/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | be450ba005abac27090250d04e8f2c0f -------------------------------------------------------------------------------- /repo/com/vinctor/plugin/autodimens/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/repo/com/vinctor/plugin/autodimens/maven-metadata.xml.sha1 -------------------------------------------------------------------------------- /screenshot/after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/screenshot/after.png -------------------------------------------------------------------------------- /screenshot/befor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/screenshot/befor.png -------------------------------------------------------------------------------- /screenshot/build.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/screenshot/build.jpg -------------------------------------------------------------------------------- /screenshot/gradle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/screenshot/gradle.png -------------------------------------------------------------------------------- /screenshot/multi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/screenshot/multi.jpg -------------------------------------------------------------------------------- /screenshot/nexus5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/screenshot/nexus5.jpg -------------------------------------------------------------------------------- /screenshot/umeng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/screenshot/umeng.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vinctor/AutoDimens/HEAD/settings.gradle --------------------------------------------------------------------------------