├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── .jshintrc ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── android └── app │ └── src │ └── main │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── ic_launcher_background.xml │ ├── launch_splash.xml │ └── splash.png │ ├── layout │ └── activity_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-ldpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── values │ ├── ic_launcher_background.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ ├── config.xml │ └── file_paths.xml ├── bin └── capacitor-resources ├── index.js ├── package.json ├── resources ├── icon.png └── splash.png ├── src ├── copy │ ├── index.js │ └── platforms │ │ ├── android │ │ └── index.js │ │ └── ios │ │ └── index.js ├── generate │ ├── index.js │ ├── platforms │ │ ├── icons │ │ │ ├── android.js │ │ │ ├── blackberry10.js │ │ │ ├── ios.js │ │ │ └── windows.js │ │ └── splash │ │ │ ├── android.js │ │ │ ├── ios.js │ │ │ └── windows.js │ └── splash │ │ ├── cover.js │ │ └── crop.js ├── index.js └── utils │ └── paths.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next 3 | build 4 | .idea 5 | .ebextensions 6 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion": 6 3 | } -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | package.json 2 | node_modules 3 | dist 4 | build 5 | coverage 6 | .next 7 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/README.md -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/drawable/launch_splash.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/drawable/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-ldpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-ldpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/xml/config.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/android/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /bin/capacitor-resources: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../index.js') 4 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/package.json -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/resources/splash.png -------------------------------------------------------------------------------- /src/copy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/src/copy/index.js -------------------------------------------------------------------------------- /src/copy/platforms/android/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/src/copy/platforms/android/index.js -------------------------------------------------------------------------------- /src/copy/platforms/ios/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/src/copy/platforms/ios/index.js -------------------------------------------------------------------------------- /src/generate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/src/generate/index.js -------------------------------------------------------------------------------- /src/generate/platforms/icons/android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/src/generate/platforms/icons/android.js -------------------------------------------------------------------------------- /src/generate/platforms/icons/blackberry10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/src/generate/platforms/icons/blackberry10.js -------------------------------------------------------------------------------- /src/generate/platforms/icons/ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/src/generate/platforms/icons/ios.js -------------------------------------------------------------------------------- /src/generate/platforms/icons/windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/src/generate/platforms/icons/windows.js -------------------------------------------------------------------------------- /src/generate/platforms/splash/android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/src/generate/platforms/splash/android.js -------------------------------------------------------------------------------- /src/generate/platforms/splash/ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/src/generate/platforms/splash/ios.js -------------------------------------------------------------------------------- /src/generate/platforms/splash/windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/src/generate/platforms/splash/windows.js -------------------------------------------------------------------------------- /src/generate/splash/cover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/src/generate/splash/cover.js -------------------------------------------------------------------------------- /src/generate/splash/crop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/src/generate/splash/crop.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/src/utils/paths.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leonardoquevedox/capacitor-resources/HEAD/yarn.lock --------------------------------------------------------------------------------