├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── CONTRIBUTORS.txt ├── LICENSE.txt ├── README.md ├── deploy-remote.sh ├── frame-plugin ├── build.gradle ├── gradle.properties └── src │ ├── main │ ├── groovy │ │ └── com │ │ │ └── mounacheikhna │ │ │ └── screenshots │ │ │ └── frame │ │ │ ├── FrameExtension.groovy │ │ │ ├── FramePlugin.groovy │ │ │ ├── FrameSpec.groovy │ │ │ ├── FrameTask.groovy │ │ │ └── ParseUtils.groovy │ └── resources │ │ └── META-INF │ │ └── gradle-plugins │ │ └── com.mounacheikhna.screenshots.frame.properties │ └── test │ ├── fixtures │ └── app │ │ ├── config-different-locale-name │ │ ├── en_GB.json │ │ ├── es_ES.json │ │ └── fr_FR.json │ │ ├── config-locales-same-prefix │ │ ├── es.json │ │ ├── es_MX.json │ │ ├── pt.json │ │ └── pt_BR.json │ │ ├── config-very-long-titles │ │ └── en_GB.json │ │ ├── config-with-suffixes │ │ ├── en_GB.properties │ │ └── fr_FR.properties │ │ ├── config │ │ ├── cs.json │ │ ├── de.json │ │ ├── en_GB.json │ │ ├── es.json │ │ └── fr.json │ │ ├── fonts │ │ └── OpenSans-Semibold.ttf │ │ ├── frames │ │ ├── galaxy_nexus_frame.png │ │ ├── galaxy_nexus_frame10.png │ │ ├── galaxy_nexus_frame2.png │ │ ├── galaxy_nexus_frame3.png │ │ ├── galaxy_nexus_frame4.png │ │ ├── galaxy_nexus_frame5.png │ │ ├── galaxy_nexus_frame6.png │ │ ├── galaxy_nexus_frame7.png │ │ ├── galaxy_nexus_frame8.png │ │ ├── galaxy_nexus_frame9.png │ │ └── galaxy_nexus_port_back.png │ │ ├── output │ │ └── 1467644398434_en_GB_list.png │ │ ├── screenshots-locales-same-prefix │ │ ├── 1465920600516_es_MX_create.png │ │ ├── 1465920600516_es_MX_list.png │ │ ├── 1465920600516_es_create.png │ │ ├── 1465920600516_es_list.png │ │ ├── 1465920600516_pt_BR_create.png │ │ ├── 1465920600516_pt_BR_list.png │ │ ├── 1465920600516_pt_create.png │ │ └── 1465920600516_pt_list.png │ │ ├── screenshots │ │ └── 1467644398434_en_GB_list.png │ │ ├── src │ │ └── custom │ │ │ └── assets │ │ │ ├── en.json │ │ │ ├── en_GB.json │ │ │ ├── es_ES.json │ │ │ └── fr_FR.json │ │ └── userHome │ │ └── native │ │ └── 19 │ │ └── osx-amd64 │ │ ├── libnative-platform.dylib │ │ └── libnative-platform.dylib.lock │ └── groovy │ └── com │ └── mounacheikhna │ └── screenshots │ └── frame │ └── FrameTaskTest.groovy ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── result ├── en_US_create.png ├── en_US_list.png ├── es_ES_create.png ├── es_ES_list.png ├── fr_FR_create.png └── fr_FR_list.png ├── sample ├── build.gradle ├── config-json │ ├── en.json │ ├── es_ES.json │ └── fr_FR.json ├── config-props │ ├── en_GB.properties │ └── fr_FR.properties ├── config │ ├── en_GB.json │ └── fr_FR.json ├── frames │ └── galaxy_nexus_port_back.png ├── proguard-rules.pro ├── screenshots │ └── dir1.another.andanother │ │ └── dir2 │ │ ├── 123456_en_GB_create.png │ │ ├── 123456_en_GB_list.png │ │ ├── 123456_es_ES_create.png │ │ ├── 123456_es_ES_list.png │ │ ├── 123456_fr_FR_create.png │ │ └── 123456_fr_FR_list.png ├── src │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── mounacheikhna │ │ │ └── screenshots │ │ │ └── sample │ │ │ └── ApplicationTest.java │ ├── main │ │ ├── AndroidManifest.xml │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── screenshots │ │ └── assets │ │ ├── en.json │ │ ├── es_ES.json │ │ └── fr_FR.json ├── titles.json └── titles.properties └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/README.md -------------------------------------------------------------------------------- /deploy-remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/deploy-remote.sh -------------------------------------------------------------------------------- /frame-plugin/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/build.gradle -------------------------------------------------------------------------------- /frame-plugin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/gradle.properties -------------------------------------------------------------------------------- /frame-plugin/src/main/groovy/com/mounacheikhna/screenshots/frame/FrameExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/main/groovy/com/mounacheikhna/screenshots/frame/FrameExtension.groovy -------------------------------------------------------------------------------- /frame-plugin/src/main/groovy/com/mounacheikhna/screenshots/frame/FramePlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/main/groovy/com/mounacheikhna/screenshots/frame/FramePlugin.groovy -------------------------------------------------------------------------------- /frame-plugin/src/main/groovy/com/mounacheikhna/screenshots/frame/FrameSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/main/groovy/com/mounacheikhna/screenshots/frame/FrameSpec.groovy -------------------------------------------------------------------------------- /frame-plugin/src/main/groovy/com/mounacheikhna/screenshots/frame/FrameTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/main/groovy/com/mounacheikhna/screenshots/frame/FrameTask.groovy -------------------------------------------------------------------------------- /frame-plugin/src/main/groovy/com/mounacheikhna/screenshots/frame/ParseUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/main/groovy/com/mounacheikhna/screenshots/frame/ParseUtils.groovy -------------------------------------------------------------------------------- /frame-plugin/src/main/resources/META-INF/gradle-plugins/com.mounacheikhna.screenshots.frame.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/main/resources/META-INF/gradle-plugins/com.mounacheikhna.screenshots.frame.properties -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/config-different-locale-name/en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/config-different-locale-name/en_GB.json -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/config-different-locale-name/es_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/config-different-locale-name/es_ES.json -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/config-different-locale-name/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/config-different-locale-name/fr_FR.json -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/config-locales-same-prefix/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/config-locales-same-prefix/es.json -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/config-locales-same-prefix/es_MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/config-locales-same-prefix/es_MX.json -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/config-locales-same-prefix/pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/config-locales-same-prefix/pt.json -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/config-locales-same-prefix/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/config-locales-same-prefix/pt_BR.json -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/config-very-long-titles/en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/config-very-long-titles/en_GB.json -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/config-with-suffixes/en_GB.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/config-with-suffixes/en_GB.properties -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/config-with-suffixes/fr_FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/config-with-suffixes/fr_FR.properties -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/config/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/config/cs.json -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/config/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/config/de.json -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/config/en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/config/en_GB.json -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/config/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/config/es.json -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/config/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/config/fr.json -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame10.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame2.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame3.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame4.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame5.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame6.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame7.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame8.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_frame9.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_port_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/frames/galaxy_nexus_port_back.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/output/1467644398434_en_GB_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/output/1467644398434_en_GB_list.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/screenshots-locales-same-prefix/1465920600516_es_MX_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/screenshots-locales-same-prefix/1465920600516_es_MX_create.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/screenshots-locales-same-prefix/1465920600516_es_MX_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/screenshots-locales-same-prefix/1465920600516_es_MX_list.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/screenshots-locales-same-prefix/1465920600516_es_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/screenshots-locales-same-prefix/1465920600516_es_create.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/screenshots-locales-same-prefix/1465920600516_es_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/screenshots-locales-same-prefix/1465920600516_es_list.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/screenshots-locales-same-prefix/1465920600516_pt_BR_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/screenshots-locales-same-prefix/1465920600516_pt_BR_create.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/screenshots-locales-same-prefix/1465920600516_pt_BR_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/screenshots-locales-same-prefix/1465920600516_pt_BR_list.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/screenshots-locales-same-prefix/1465920600516_pt_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/screenshots-locales-same-prefix/1465920600516_pt_create.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/screenshots-locales-same-prefix/1465920600516_pt_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/screenshots-locales-same-prefix/1465920600516_pt_list.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/screenshots/1467644398434_en_GB_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/screenshots/1467644398434_en_GB_list.png -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/src/custom/assets/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/src/custom/assets/en.json -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/src/custom/assets/en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/src/custom/assets/en_GB.json -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/src/custom/assets/es_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/src/custom/assets/es_ES.json -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/src/custom/assets/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/src/custom/assets/fr_FR.json -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/userHome/native/19/osx-amd64/libnative-platform.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/fixtures/app/userHome/native/19/osx-amd64/libnative-platform.dylib -------------------------------------------------------------------------------- /frame-plugin/src/test/fixtures/app/userHome/native/19/osx-amd64/libnative-platform.dylib.lock: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /frame-plugin/src/test/groovy/com/mounacheikhna/screenshots/frame/FrameTaskTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/frame-plugin/src/test/groovy/com/mounacheikhna/screenshots/frame/FrameTaskTest.groovy -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /result/en_US_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/result/en_US_create.png -------------------------------------------------------------------------------- /result/en_US_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/result/en_US_list.png -------------------------------------------------------------------------------- /result/es_ES_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/result/es_ES_create.png -------------------------------------------------------------------------------- /result/es_ES_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/result/es_ES_list.png -------------------------------------------------------------------------------- /result/fr_FR_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/result/fr_FR_create.png -------------------------------------------------------------------------------- /result/fr_FR_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/result/fr_FR_list.png -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/config-json/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/config-json/en.json -------------------------------------------------------------------------------- /sample/config-json/es_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/config-json/es_ES.json -------------------------------------------------------------------------------- /sample/config-json/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/config-json/fr_FR.json -------------------------------------------------------------------------------- /sample/config-props/en_GB.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/config-props/en_GB.properties -------------------------------------------------------------------------------- /sample/config-props/fr_FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/config-props/fr_FR.properties -------------------------------------------------------------------------------- /sample/config/en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/config/en_GB.json -------------------------------------------------------------------------------- /sample/config/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/config/fr_FR.json -------------------------------------------------------------------------------- /sample/frames/galaxy_nexus_port_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/frames/galaxy_nexus_port_back.png -------------------------------------------------------------------------------- /sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/proguard-rules.pro -------------------------------------------------------------------------------- /sample/screenshots/dir1.another.andanother/dir2/123456_en_GB_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/screenshots/dir1.another.andanother/dir2/123456_en_GB_create.png -------------------------------------------------------------------------------- /sample/screenshots/dir1.another.andanother/dir2/123456_en_GB_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/screenshots/dir1.another.andanother/dir2/123456_en_GB_list.png -------------------------------------------------------------------------------- /sample/screenshots/dir1.another.andanother/dir2/123456_es_ES_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/screenshots/dir1.another.andanother/dir2/123456_es_ES_create.png -------------------------------------------------------------------------------- /sample/screenshots/dir1.another.andanother/dir2/123456_es_ES_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/screenshots/dir1.another.andanother/dir2/123456_es_ES_list.png -------------------------------------------------------------------------------- /sample/screenshots/dir1.another.andanother/dir2/123456_fr_FR_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/screenshots/dir1.another.andanother/dir2/123456_fr_FR_create.png -------------------------------------------------------------------------------- /sample/screenshots/dir1.another.andanother/dir2/123456_fr_FR_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/screenshots/dir1.another.andanother/dir2/123456_fr_FR_list.png -------------------------------------------------------------------------------- /sample/src/androidTest/java/com/mounacheikhna/screenshots/sample/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/src/androidTest/java/com/mounacheikhna/screenshots/sample/ApplicationTest.java -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /sample/src/screenshots/assets/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/src/screenshots/assets/en.json -------------------------------------------------------------------------------- /sample/src/screenshots/assets/es_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/src/screenshots/assets/es_ES.json -------------------------------------------------------------------------------- /sample/src/screenshots/assets/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/src/screenshots/assets/fr_FR.json -------------------------------------------------------------------------------- /sample/titles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/titles.json -------------------------------------------------------------------------------- /sample/titles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/sample/titles.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chemouna/frame-gradle-plugin/HEAD/settings.gradle --------------------------------------------------------------------------------