├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── JSON_Creator_WhatsAppSticker_Pack.png ├── README.md └── index.html /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /JSON_Creator_WhatsAppSticker_Pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pratikbutani/WAStickerApp-JSON-Generator/1f0e822fd9d7c29729c6ee184b56048c0516eadc/JSON_Creator_WhatsAppSticker_Pack.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WAStickerApp-JSON-Generator 2 | A JSON Generator for WhatsApp Sticker Pack Apps. Check it now : http://pratikbutani.com/wastickerapp/ 3 | 4 |  5 | 6 | We are creating many apps for WhatsApp Stickers after they have announced sticker features in Android and iOS App. 7 | 8 | I have also created some apps for [WhatsApp Stickers](https://play.google.com/store/apps/developer?id=WAStickers+Collection+Apps) but got some difficulties to create JSON for `content.json` file. Every developer faced this problem, Believe Me. 9 | 10 | Here is the solution, I have created tool [Convert Image names to JSON Array (WAStickerApp)](http://pratikbutani.com/wastickerapp/) which can help you to get JSON by giving details of Sticker Pack. 11 | 12 | You can upload following details: 13 | - Folder Name (Identifier) 14 | - Sticker Pack Name 15 | - Publisher 16 | - Tray Image (with .png) 17 | - Publisher Email 18 | - Publisher Website 19 | - Privacy Policy URL 20 | - Licence Agreement Website 21 | - Images (Only .webp) 22 | 23 | It will give full array in JSON as below: 24 | 25 | **Format:** 26 | ``` 27 | { 28 | "android_play_store_link": "", 29 | "ios_app_store_link": "", 30 | "sticker_packs": [ 31 | { 32 | "identifier": "1", 33 | "name": "My Sticker Pack", 34 | "publisher": "Pratik Butani", 35 | "tray_image_file": "placeholder.png", 36 | "image_data_version","1", 37 | "avoid_cache":false 38 | "publisher_email": "pratik13butani@gmail.com", 39 | "publisher_website": "pratikbutani.com", 40 | "privacy_policy_website": "your-url.com/privacy_policy.php", 41 | "license_agreement_website": "your-url.com/license.php", 42 | "stickers": [ 43 | { 44 | "image_file": "banner.webp", 45 | "emoji": [ 46 | "", 47 | "" 48 | ] 49 | }, 50 | { 51 | "image_file": "bg_img.webp", 52 | "emoji": [ 53 | "", 54 | "" 55 | ] 56 | }, 57 | { 58 | "image_file": "ic_chef.webp", 59 | "emoji": [ 60 | "", 61 | "" 62 | ] 63 | } 64 | ] 65 | } 66 | ] 67 | } 68 | ``` 69 | 70 | You can read full article here : [JSON Creator for WhatsApp Sticker Pack](https://medium.com/mindorks/json-creator-for-whatsapp-sticker-pack-1ffb2719f562) 71 | 72 | I hope you will love it. 73 | 74 | **No one has ever become poor by giving. <3 <3** 75 | 76 | [](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=46Q5USNZNGKML) 77 | 78 | Thank you. 79 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 |
153 | No one has ever become poor by giving.♥♥♥154 | 160 | |
161 |