├── .github ├── ISSUE_TEMPLATE │ ├── android.md │ ├── config.yml │ ├── general.md │ └── ios.md └── PULL_REQUEST_TEMPLATE │ ├── android.md │ ├── general.md │ └── ios.md ├── Android ├── .gitignore ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ ├── 1 │ │ │ ├── 01_Cuppy_smile.webp │ │ │ ├── 02_Cuppy_lol.webp │ │ │ ├── 03_Cuppy_rofl.webp │ │ │ ├── 04_Cuppy_sad.webp │ │ │ ├── 05_Cuppy_cry.webp │ │ │ ├── 06_Cuppy_love.webp │ │ │ ├── 07_Cuppy_hate.webp │ │ │ ├── 08_Cuppy_lovewithmug.webp │ │ │ ├── 09_Cuppy_lovewithcookie.webp │ │ │ ├── 10_Cuppy_hmm.webp │ │ │ ├── 11_Cuppy_upset.webp │ │ │ ├── 12_Cuppy_angry.webp │ │ │ ├── 13_Cuppy_curious.webp │ │ │ ├── 14_Cuppy_weird.webp │ │ │ ├── 15_Cuppy_bluescreen.webp │ │ │ ├── 16_Cuppy_angry.webp │ │ │ ├── 17_Cuppy_tired.webp │ │ │ ├── 18_Cuppy_workhard.webp │ │ │ ├── 19_Cuppy_shine.webp │ │ │ ├── 20_Cuppy_disgusting.webp │ │ │ ├── 21_Cuppy_hi.webp │ │ │ ├── 22_Cuppy_bye.webp │ │ │ ├── 23_Cuppy_greentea.webp │ │ │ ├── 24_Cuppy_phone.webp │ │ │ ├── 25_Cuppy_battery.webp │ │ │ └── tray_Cuppy.png │ │ ├── 2 │ │ │ ├── 01.png │ │ │ ├── 01_SendingLove.webp │ │ │ ├── 02_WellDoThisTogether.webp │ │ │ ├── 03_Heart.webp │ │ │ ├── 04_AirHighFive.webp │ │ │ ├── 05_GroupVideoCalling.webp │ │ │ ├── 06_StayConnected.webp │ │ │ ├── 07_OK.webp │ │ │ ├── 08_AreYouOK.webp │ │ │ ├── 09_StayingHomeMug.webp │ │ │ ├── 10_WorkingFromBed.webp │ │ │ ├── 11_StayCalm.webp │ │ │ ├── 12_Gymnastics.webp │ │ │ ├── 13_DoubleChecking.webp │ │ │ ├── 14_CatOnTheLaptop.webp │ │ │ ├── 15_WorkingFromHomeF.webp │ │ │ ├── 16_WorkingFromHomeM.webp │ │ │ ├── 17_WashingHands.webp │ │ │ ├── 18_DontTouchYourFace.webp │ │ │ ├── 19_SocialDistancing.webp │ │ │ ├── 20_SuperheroNurse.webp │ │ │ └── 21_YouAreMyHero.webp │ │ └── contents.json │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── samplestickerapp │ │ │ ├── AddStickerPackActivity.java │ │ │ ├── BaseActivity.java │ │ │ ├── BottomFadingRecyclerView.java │ │ │ ├── ContentFileParser.java │ │ │ ├── EntryActivity.java │ │ │ ├── Sticker.java │ │ │ ├── StickerApplication.java │ │ │ ├── StickerContentProvider.java │ │ │ ├── StickerPack.java │ │ │ ├── StickerPackDetailsActivity.java │ │ │ ├── StickerPackInfoActivity.java │ │ │ ├── StickerPackListActivity.java │ │ │ ├── StickerPackListAdapter.java │ │ │ ├── StickerPackListItemViewHolder.java │ │ │ ├── StickerPackLoader.java │ │ │ ├── StickerPackValidator.java │ │ │ ├── StickerPreviewAdapter.java │ │ │ ├── StickerPreviewViewHolder.java │ │ │ └── WhitelistCheck.java │ │ └── res │ │ ├── drawable-hdpi │ │ ├── animated_pack_indicator.png │ │ ├── sticker_3rdparty_add.png │ │ ├── sticker_3rdparty_added.png │ │ ├── sticker_3rdparty_email.png │ │ ├── sticker_3rdparty_info.png │ │ ├── sticker_3rdparty_license.png │ │ ├── sticker_3rdparty_privacy.png │ │ ├── sticker_3rdparty_wa.png │ │ └── sticker_3rdparty_web.png │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xhdpi │ │ ├── sticker_3rdparty_add.png │ │ ├── sticker_3rdparty_added.png │ │ ├── sticker_3rdparty_email.png │ │ ├── sticker_3rdparty_info.png │ │ ├── sticker_3rdparty_license.png │ │ ├── sticker_3rdparty_privacy.png │ │ ├── sticker_3rdparty_wa.png │ │ └── sticker_3rdparty_web.png │ │ ├── drawable-xxhdpi │ │ ├── animated_pack_indicator.png │ │ ├── btn_green_normal.9.png │ │ ├── btn_green_pressed.9.png │ │ ├── sticker_3rdparty_add.png │ │ ├── sticker_3rdparty_added.png │ │ ├── sticker_3rdparty_email.png │ │ ├── sticker_3rdparty_info.png │ │ ├── sticker_3rdparty_license.png │ │ ├── sticker_3rdparty_privacy.png │ │ ├── sticker_3rdparty_wa.png │ │ ├── sticker_3rdparty_web.png │ │ └── sticker_error.png │ │ ├── drawable-xxxhdpi │ │ ├── sticker_3rdparty_add.png │ │ ├── sticker_3rdparty_added.png │ │ ├── sticker_3rdparty_email.png │ │ ├── sticker_3rdparty_info.png │ │ ├── sticker_3rdparty_license.png │ │ ├── sticker_3rdparty_privacy.png │ │ ├── sticker_3rdparty_wa.png │ │ └── sticker_3rdparty_web.png │ │ ├── drawable │ │ ├── btn_green.xml │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_entry.xml │ │ ├── activity_sticker_pack_details.xml │ │ ├── activity_sticker_pack_info.xml │ │ ├── activity_sticker_pack_list.xml │ │ ├── sticker_image_item.xml │ │ ├── sticker_packs_list_image_item.xml │ │ └── sticker_packs_list_item.xml │ │ ├── menu │ │ └── toolbar.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-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-af │ │ └── strings.xml │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-az │ │ └── strings.xml │ │ ├── values-bg │ │ └── strings.xml │ │ ├── values-bn │ │ └── strings.xml │ │ ├── values-ca │ │ └── strings.xml │ │ ├── values-cs │ │ └── strings.xml │ │ ├── values-da │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-el │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-et │ │ └── strings.xml │ │ ├── values-fa │ │ └── strings.xml │ │ ├── values-fi │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-ga │ │ └── strings.xml │ │ ├── values-gl │ │ └── strings.xml │ │ ├── values-gu │ │ └── strings.xml │ │ ├── values-hi │ │ └── strings.xml │ │ ├── values-hr │ │ └── strings.xml │ │ ├── values-hu │ │ └── strings.xml │ │ ├── values-in │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-iw │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-kk │ │ └── strings.xml │ │ ├── values-kn │ │ └── strings.xml │ │ ├── values-ko │ │ └── strings.xml │ │ ├── values-lo │ │ └── strings.xml │ │ ├── values-lt │ │ └── strings.xml │ │ ├── values-lv │ │ └── strings.xml │ │ ├── values-mk │ │ └── strings.xml │ │ ├── values-ml │ │ └── strings.xml │ │ ├── values-mr │ │ └── strings.xml │ │ ├── values-ms │ │ └── strings.xml │ │ ├── values-nb │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-pa │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-pt │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-sk │ │ └── strings.xml │ │ ├── values-sl │ │ └── strings.xml │ │ ├── values-sq │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-sw │ │ └── strings.xml │ │ ├── values-ta │ │ └── strings.xml │ │ ├── values-te │ │ └── strings.xml │ │ ├── values-th │ │ └── strings.xml │ │ ├── values-tl │ │ └── strings.xml │ │ ├── values-tr │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-ur │ │ └── strings.xml │ │ ├── values-uz │ │ └── strings.xml │ │ ├── values-vi │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── donottranslate.xml │ │ ├── ic_launcher_background.xml │ │ ├── refs.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── iOS ├── .gitignore ├── README.md ├── WAStickersThirdParty.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── WAStickersThirdParty ├── 01_Cuppy_smile.png ├── 01_SendingLove.webp ├── 02_Cuppy_lol.png ├── 02_WellDoThisTogether.webp ├── 03_Cuppy_rofl.png ├── 03_Heart.webp ├── 04_AirHighFive.webp ├── 04_Cuppy_sad.png ├── 05_Cuppy_cry.png ├── 05_GroupVideoCalling.webp ├── 06_Cuppy_love.png ├── 06_StayConnected.webp ├── 07_Cuppy_hate.png ├── 07_OK.webp ├── 08_AreYouOK.webp ├── 08_Cuppy_lovewithmug.png ├── 09_Cuppy_lovewithcookie.png ├── 09_StayingHomeMug.webp ├── 10_Cuppy_hmm.png ├── 10_WorkingFromBed.webp ├── 11_Cuppy_upset.png ├── 11_StayCalm.webp ├── 12_Cuppy_angry.png ├── 12_Gymnastics.webp ├── 13_Cuppy_curious.png ├── 13_DoubleChecking.webp ├── 14_CatOnTheLaptop.webp ├── 14_Cuppy_weird.png ├── 15_Cuppy_bluescreen.png ├── 15_WorkingFromHomeF.webp ├── 16_Cuppy_angry.png ├── 16_WorkingFromHomeM.webp ├── 17_Cuppy_tired.png ├── 17_WashingHands.webp ├── 18_Cuppy_workhard.png ├── 18_DontTouchYourFace.webp ├── 19_Cuppy_shine.png ├── 19_SocialDistancing.webp ├── 20_Cuppy_disgusting.png ├── 20_SuperheroNurse.webp ├── 21_Cuppy_hi.png ├── 21_YouAreMyHero.webp ├── 22_Cuppy_bye.png ├── 23_Cuppy_greentea.png ├── 24_Cuppy_phone.png ├── 25_Cuppy_battery.png ├── AllStickerPacksViewController.swift ├── AppDelegate.swift ├── AquaButton.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Cuppy_1024.png │ │ ├── Cuppy_120.png │ │ └── Cuppy_180.png │ ├── Contents.json │ ├── ShareIcon.imageset │ │ ├── Contents.json │ │ ├── Share@2x.png │ │ └── Share@3x.png │ ├── StickerAnimation.imageset │ │ ├── Contents.json │ │ ├── StickerAnimationlist@2x.png │ │ └── StickerAnimationlist@3x.png │ ├── WALicenseIcon.imageset │ │ ├── Contents.json │ │ ├── Stickerlicense.png │ │ ├── Stickerlicense@2x.png │ │ └── Stickerlicense@3x.png │ ├── WALogoIcon.imageset │ │ ├── Contents.json │ │ ├── StickerWAlogo.png │ │ ├── StickerWAlogo@2x.png │ │ └── StickerWAlogo@3x.png │ ├── WAPrivacyPolicyIcon.imageset │ │ ├── Contents.json │ │ ├── Stickerprivacy.png │ │ ├── Stickerprivacy@2x.png │ │ └── Stickerprivacy@3x.png │ └── WAWebsiteIcon.imageset │ │ ├── Contents.json │ │ ├── Stickerwebsite.png │ │ ├── Stickerwebsite@2x.png │ │ └── Stickerwebsite@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── GradientView.swift ├── ImageData.swift ├── Info.plist ├── Interoperability.swift ├── Limits.swift ├── LinkTableViewCell.swift ├── LinkTableViewCell.xib ├── SecondaryTextTableViewCell.swift ├── SecondaryTextTableViewCell.xib ├── Sticker.swift ├── StickerCell.swift ├── StickerPack.swift ├── StickerPackInfoViewController.swift ├── StickerPackManager.swift ├── StickerPackTableViewCell.swift ├── StickerPackTableViewCell.xib ├── StickerPackViewController.swift ├── UIAlertController+Additions.swift ├── WAStickersThirdParty-Bridging-Header.h ├── WebPManager.swift ├── YYAnimatedImageView.h ├── YYAnimatedImageView.m ├── YYFrameImage.h ├── YYFrameImage.m ├── YYImage.h ├── YYImage.m ├── YYImageCoder.h ├── YYImageCoder.m ├── YYSpriteSheetImage.h ├── YYSpriteSheetImage.m ├── sticker_packs.wasticker ├── tray_Cuppy.png └── tray_TogetherAtHome.png └── WebP.framework ├── Headers ├── config.h ├── decode.h ├── demux.h ├── encode.h ├── format_constants.h ├── mux.h ├── mux_types.h └── types.h └── WebP /.github/ISSUE_TEMPLATE/android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/.github/ISSUE_TEMPLATE/android.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/.github/ISSUE_TEMPLATE/general.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/.github/ISSUE_TEMPLATE/ios.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/.github/PULL_REQUEST_TEMPLATE/android.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/.github/PULL_REQUEST_TEMPLATE/general.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/.github/PULL_REQUEST_TEMPLATE/ios.md -------------------------------------------------------------------------------- /Android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/.gitignore -------------------------------------------------------------------------------- /Android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/README.md -------------------------------------------------------------------------------- /Android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/build.gradle -------------------------------------------------------------------------------- /Android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/01_Cuppy_smile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/01_Cuppy_smile.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/02_Cuppy_lol.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/02_Cuppy_lol.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/03_Cuppy_rofl.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/03_Cuppy_rofl.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/04_Cuppy_sad.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/04_Cuppy_sad.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/05_Cuppy_cry.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/05_Cuppy_cry.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/06_Cuppy_love.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/06_Cuppy_love.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/07_Cuppy_hate.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/07_Cuppy_hate.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/08_Cuppy_lovewithmug.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/08_Cuppy_lovewithmug.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/09_Cuppy_lovewithcookie.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/09_Cuppy_lovewithcookie.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/10_Cuppy_hmm.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/10_Cuppy_hmm.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/11_Cuppy_upset.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/11_Cuppy_upset.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/12_Cuppy_angry.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/12_Cuppy_angry.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/13_Cuppy_curious.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/13_Cuppy_curious.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/14_Cuppy_weird.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/14_Cuppy_weird.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/15_Cuppy_bluescreen.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/15_Cuppy_bluescreen.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/16_Cuppy_angry.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/16_Cuppy_angry.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/17_Cuppy_tired.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/17_Cuppy_tired.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/18_Cuppy_workhard.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/18_Cuppy_workhard.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/19_Cuppy_shine.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/19_Cuppy_shine.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/20_Cuppy_disgusting.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/20_Cuppy_disgusting.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/21_Cuppy_hi.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/21_Cuppy_hi.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/22_Cuppy_bye.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/22_Cuppy_bye.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/23_Cuppy_greentea.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/23_Cuppy_greentea.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/24_Cuppy_phone.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/24_Cuppy_phone.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/25_Cuppy_battery.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/25_Cuppy_battery.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/1/tray_Cuppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/1/tray_Cuppy.png -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/01.png -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/01_SendingLove.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/01_SendingLove.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/02_WellDoThisTogether.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/02_WellDoThisTogether.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/03_Heart.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/03_Heart.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/04_AirHighFive.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/04_AirHighFive.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/05_GroupVideoCalling.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/05_GroupVideoCalling.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/06_StayConnected.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/06_StayConnected.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/07_OK.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/07_OK.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/08_AreYouOK.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/08_AreYouOK.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/09_StayingHomeMug.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/09_StayingHomeMug.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/10_WorkingFromBed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/10_WorkingFromBed.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/11_StayCalm.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/11_StayCalm.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/12_Gymnastics.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/12_Gymnastics.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/13_DoubleChecking.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/13_DoubleChecking.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/14_CatOnTheLaptop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/14_CatOnTheLaptop.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/15_WorkingFromHomeF.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/15_WorkingFromHomeF.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/16_WorkingFromHomeM.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/16_WorkingFromHomeM.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/17_WashingHands.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/17_WashingHands.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/18_DontTouchYourFace.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/18_DontTouchYourFace.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/19_SocialDistancing.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/19_SocialDistancing.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/20_SuperheroNurse.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/20_SuperheroNurse.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/2/21_YouAreMyHero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/2/21_YouAreMyHero.webp -------------------------------------------------------------------------------- /Android/app/src/main/assets/contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/assets/contents.json -------------------------------------------------------------------------------- /Android/app/src/main/java/com/example/samplestickerapp/AddStickerPackActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/java/com/example/samplestickerapp/AddStickerPackActivity.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/example/samplestickerapp/BaseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/java/com/example/samplestickerapp/BaseActivity.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/example/samplestickerapp/BottomFadingRecyclerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/java/com/example/samplestickerapp/BottomFadingRecyclerView.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/example/samplestickerapp/ContentFileParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/java/com/example/samplestickerapp/ContentFileParser.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/example/samplestickerapp/EntryActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/java/com/example/samplestickerapp/EntryActivity.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/example/samplestickerapp/Sticker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/java/com/example/samplestickerapp/Sticker.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/example/samplestickerapp/StickerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/java/com/example/samplestickerapp/StickerApplication.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/example/samplestickerapp/StickerContentProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/java/com/example/samplestickerapp/StickerContentProvider.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/example/samplestickerapp/StickerPack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/java/com/example/samplestickerapp/StickerPack.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/example/samplestickerapp/StickerPackDetailsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/java/com/example/samplestickerapp/StickerPackDetailsActivity.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/example/samplestickerapp/StickerPackInfoActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/java/com/example/samplestickerapp/StickerPackInfoActivity.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/example/samplestickerapp/StickerPackListActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/java/com/example/samplestickerapp/StickerPackListActivity.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/example/samplestickerapp/StickerPackListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/java/com/example/samplestickerapp/StickerPackListAdapter.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/example/samplestickerapp/StickerPackListItemViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/java/com/example/samplestickerapp/StickerPackListItemViewHolder.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/example/samplestickerapp/StickerPackLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/java/com/example/samplestickerapp/StickerPackLoader.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/example/samplestickerapp/StickerPackValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/java/com/example/samplestickerapp/StickerPackValidator.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/example/samplestickerapp/StickerPreviewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/java/com/example/samplestickerapp/StickerPreviewAdapter.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/example/samplestickerapp/StickerPreviewViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/java/com/example/samplestickerapp/StickerPreviewViewHolder.java -------------------------------------------------------------------------------- /Android/app/src/main/java/com/example/samplestickerapp/WhitelistCheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/java/com/example/samplestickerapp/WhitelistCheck.java -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-hdpi/animated_pack_indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-hdpi/animated_pack_indicator.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-hdpi/sticker_3rdparty_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-hdpi/sticker_3rdparty_add.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-hdpi/sticker_3rdparty_added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-hdpi/sticker_3rdparty_added.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-hdpi/sticker_3rdparty_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-hdpi/sticker_3rdparty_email.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-hdpi/sticker_3rdparty_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-hdpi/sticker_3rdparty_info.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-hdpi/sticker_3rdparty_license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-hdpi/sticker_3rdparty_license.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-hdpi/sticker_3rdparty_privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-hdpi/sticker_3rdparty_privacy.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-hdpi/sticker_3rdparty_wa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-hdpi/sticker_3rdparty_wa.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-hdpi/sticker_3rdparty_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-hdpi/sticker_3rdparty_web.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xhdpi/sticker_3rdparty_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xhdpi/sticker_3rdparty_add.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xhdpi/sticker_3rdparty_added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xhdpi/sticker_3rdparty_added.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xhdpi/sticker_3rdparty_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xhdpi/sticker_3rdparty_email.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xhdpi/sticker_3rdparty_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xhdpi/sticker_3rdparty_info.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xhdpi/sticker_3rdparty_license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xhdpi/sticker_3rdparty_license.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xhdpi/sticker_3rdparty_privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xhdpi/sticker_3rdparty_privacy.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xhdpi/sticker_3rdparty_wa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xhdpi/sticker_3rdparty_wa.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xhdpi/sticker_3rdparty_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xhdpi/sticker_3rdparty_web.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxhdpi/animated_pack_indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxhdpi/animated_pack_indicator.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxhdpi/btn_green_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxhdpi/btn_green_normal.9.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxhdpi/btn_green_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxhdpi/btn_green_pressed.9.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxhdpi/sticker_3rdparty_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxhdpi/sticker_3rdparty_add.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxhdpi/sticker_3rdparty_added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxhdpi/sticker_3rdparty_added.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxhdpi/sticker_3rdparty_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxhdpi/sticker_3rdparty_email.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxhdpi/sticker_3rdparty_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxhdpi/sticker_3rdparty_info.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxhdpi/sticker_3rdparty_license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxhdpi/sticker_3rdparty_license.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxhdpi/sticker_3rdparty_privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxhdpi/sticker_3rdparty_privacy.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxhdpi/sticker_3rdparty_wa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxhdpi/sticker_3rdparty_wa.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxhdpi/sticker_3rdparty_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxhdpi/sticker_3rdparty_web.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxhdpi/sticker_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxhdpi/sticker_error.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxxhdpi/sticker_3rdparty_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxxhdpi/sticker_3rdparty_add.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxxhdpi/sticker_3rdparty_added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxxhdpi/sticker_3rdparty_added.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxxhdpi/sticker_3rdparty_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxxhdpi/sticker_3rdparty_email.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxxhdpi/sticker_3rdparty_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxxhdpi/sticker_3rdparty_info.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxxhdpi/sticker_3rdparty_license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxxhdpi/sticker_3rdparty_license.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxxhdpi/sticker_3rdparty_privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxxhdpi/sticker_3rdparty_privacy.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxxhdpi/sticker_3rdparty_wa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxxhdpi/sticker_3rdparty_wa.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable-xxxhdpi/sticker_3rdparty_web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable-xxxhdpi/sticker_3rdparty_web.png -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/btn_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable/btn_green.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/activity_entry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/layout/activity_entry.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/activity_sticker_pack_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/layout/activity_sticker_pack_details.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/activity_sticker_pack_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/layout/activity_sticker_pack_info.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/activity_sticker_pack_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/layout/activity_sticker_pack_list.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/sticker_image_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/layout/sticker_image_item.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/sticker_packs_list_image_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/layout/sticker_packs_list_image_item.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/layout/sticker_packs_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/layout/sticker_packs_list_item.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/menu/toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/menu/toolbar.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/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/WhatsApp/stickers/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/WhatsApp/stickers/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/WhatsApp/stickers/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/WhatsApp/stickers/HEAD/Android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/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/WhatsApp/stickers/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/WhatsApp/stickers/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/WhatsApp/stickers/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/WhatsApp/stickers/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/WhatsApp/stickers/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/WhatsApp/stickers/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/WhatsApp/stickers/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/WhatsApp/stickers/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/WhatsApp/stickers/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/WhatsApp/stickers/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/WhatsApp/stickers/HEAD/Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/app/src/main/res/values-af/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-af/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-az/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-az/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-bg/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-bn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-bn/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-da/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-et/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-fa/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-fi/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-ga/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-ga/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-gl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-gl/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-gu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-gu/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-hi/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-hr/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-hu/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-iw/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-kk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-kk/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-kn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-kn/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-lo/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-lo/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-lt/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-lv/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-mk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-mk/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-ml/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-mr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-mr/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-ms/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-ms/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-nb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-nb/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-pa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-pa/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-ro/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-sk/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-sl/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-sq/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-sq/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-sr/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-sv/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-sw/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-ta/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-ta/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-te/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-te/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-th/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-tl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-tl/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-ur/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-ur/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-uz/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-uz/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-vi/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values/donottranslate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values/donottranslate.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values/refs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values/refs.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/build.gradle -------------------------------------------------------------------------------- /Android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/gradle.properties -------------------------------------------------------------------------------- /Android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/gradlew -------------------------------------------------------------------------------- /Android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/gradlew.bat -------------------------------------------------------------------------------- /Android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/Android/settings.gradle -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/README.md -------------------------------------------------------------------------------- /iOS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/.gitignore -------------------------------------------------------------------------------- /iOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/README.md -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/01_Cuppy_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/01_Cuppy_smile.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/01_SendingLove.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/01_SendingLove.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/02_Cuppy_lol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/02_Cuppy_lol.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/02_WellDoThisTogether.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/02_WellDoThisTogether.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/03_Cuppy_rofl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/03_Cuppy_rofl.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/03_Heart.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/03_Heart.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/04_AirHighFive.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/04_AirHighFive.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/04_Cuppy_sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/04_Cuppy_sad.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/05_Cuppy_cry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/05_Cuppy_cry.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/05_GroupVideoCalling.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/05_GroupVideoCalling.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/06_Cuppy_love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/06_Cuppy_love.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/06_StayConnected.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/06_StayConnected.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/07_Cuppy_hate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/07_Cuppy_hate.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/07_OK.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/07_OK.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/08_AreYouOK.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/08_AreYouOK.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/08_Cuppy_lovewithmug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/08_Cuppy_lovewithmug.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/09_Cuppy_lovewithcookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/09_Cuppy_lovewithcookie.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/09_StayingHomeMug.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/09_StayingHomeMug.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/10_Cuppy_hmm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/10_Cuppy_hmm.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/10_WorkingFromBed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/10_WorkingFromBed.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/11_Cuppy_upset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/11_Cuppy_upset.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/11_StayCalm.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/11_StayCalm.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/12_Cuppy_angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/12_Cuppy_angry.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/12_Gymnastics.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/12_Gymnastics.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/13_Cuppy_curious.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/13_Cuppy_curious.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/13_DoubleChecking.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/13_DoubleChecking.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/14_CatOnTheLaptop.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/14_CatOnTheLaptop.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/14_Cuppy_weird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/14_Cuppy_weird.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/15_Cuppy_bluescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/15_Cuppy_bluescreen.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/15_WorkingFromHomeF.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/15_WorkingFromHomeF.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/16_Cuppy_angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/16_Cuppy_angry.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/16_WorkingFromHomeM.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/16_WorkingFromHomeM.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/17_Cuppy_tired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/17_Cuppy_tired.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/17_WashingHands.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/17_WashingHands.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/18_Cuppy_workhard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/18_Cuppy_workhard.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/18_DontTouchYourFace.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/18_DontTouchYourFace.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/19_Cuppy_shine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/19_Cuppy_shine.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/19_SocialDistancing.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/19_SocialDistancing.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/20_Cuppy_disgusting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/20_Cuppy_disgusting.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/20_SuperheroNurse.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/20_SuperheroNurse.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/21_Cuppy_hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/21_Cuppy_hi.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/21_YouAreMyHero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/21_YouAreMyHero.webp -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/22_Cuppy_bye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/22_Cuppy_bye.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/23_Cuppy_greentea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/23_Cuppy_greentea.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/24_Cuppy_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/24_Cuppy_phone.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/25_Cuppy_battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/25_Cuppy_battery.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/AllStickerPacksViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/AllStickerPacksViewController.swift -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/AppDelegate.swift -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/AquaButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/AquaButton.swift -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/AppIcon.appiconset/Cuppy_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/AppIcon.appiconset/Cuppy_1024.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/AppIcon.appiconset/Cuppy_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/AppIcon.appiconset/Cuppy_120.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/AppIcon.appiconset/Cuppy_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/AppIcon.appiconset/Cuppy_180.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/ShareIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/ShareIcon.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/ShareIcon.imageset/Share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/ShareIcon.imageset/Share@2x.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/ShareIcon.imageset/Share@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/ShareIcon.imageset/Share@3x.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/StickerAnimation.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/StickerAnimation.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/StickerAnimation.imageset/StickerAnimationlist@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/StickerAnimation.imageset/StickerAnimationlist@2x.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/StickerAnimation.imageset/StickerAnimationlist@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/StickerAnimation.imageset/StickerAnimationlist@3x.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/WALicenseIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/WALicenseIcon.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/WALicenseIcon.imageset/Stickerlicense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/WALicenseIcon.imageset/Stickerlicense.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/WALicenseIcon.imageset/Stickerlicense@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/WALicenseIcon.imageset/Stickerlicense@2x.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/WALicenseIcon.imageset/Stickerlicense@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/WALicenseIcon.imageset/Stickerlicense@3x.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/WALogoIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/WALogoIcon.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/WALogoIcon.imageset/StickerWAlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/WALogoIcon.imageset/StickerWAlogo.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/WALogoIcon.imageset/StickerWAlogo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/WALogoIcon.imageset/StickerWAlogo@2x.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/WALogoIcon.imageset/StickerWAlogo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/WALogoIcon.imageset/StickerWAlogo@3x.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/WAPrivacyPolicyIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/WAPrivacyPolicyIcon.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/WAPrivacyPolicyIcon.imageset/Stickerprivacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/WAPrivacyPolicyIcon.imageset/Stickerprivacy.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/WAPrivacyPolicyIcon.imageset/Stickerprivacy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/WAPrivacyPolicyIcon.imageset/Stickerprivacy@2x.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/WAPrivacyPolicyIcon.imageset/Stickerprivacy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/WAPrivacyPolicyIcon.imageset/Stickerprivacy@3x.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/WAWebsiteIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/WAWebsiteIcon.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/WAWebsiteIcon.imageset/Stickerwebsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/WAWebsiteIcon.imageset/Stickerwebsite.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/WAWebsiteIcon.imageset/Stickerwebsite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/WAWebsiteIcon.imageset/Stickerwebsite@2x.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Assets.xcassets/WAWebsiteIcon.imageset/Stickerwebsite@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Assets.xcassets/WAWebsiteIcon.imageset/Stickerwebsite@3x.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/GradientView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/GradientView.swift -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/ImageData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/ImageData.swift -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Info.plist -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Interoperability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Interoperability.swift -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Limits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Limits.swift -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/LinkTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/LinkTableViewCell.swift -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/LinkTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/LinkTableViewCell.xib -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/SecondaryTextTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/SecondaryTextTableViewCell.swift -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/SecondaryTextTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/SecondaryTextTableViewCell.xib -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/Sticker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/Sticker.swift -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/StickerCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/StickerCell.swift -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/StickerPack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/StickerPack.swift -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/StickerPackInfoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/StickerPackInfoViewController.swift -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/StickerPackManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/StickerPackManager.swift -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/StickerPackTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/StickerPackTableViewCell.swift -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/StickerPackTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/StickerPackTableViewCell.xib -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/StickerPackViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/StickerPackViewController.swift -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/UIAlertController+Additions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/UIAlertController+Additions.swift -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/WAStickersThirdParty-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/WAStickersThirdParty-Bridging-Header.h -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/WebPManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/WebPManager.swift -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/YYAnimatedImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/YYAnimatedImageView.h -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/YYAnimatedImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/YYAnimatedImageView.m -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/YYFrameImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/YYFrameImage.h -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/YYFrameImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/YYFrameImage.m -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/YYImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/YYImage.h -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/YYImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/YYImage.m -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/YYImageCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/YYImageCoder.h -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/YYImageCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/YYImageCoder.m -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/YYSpriteSheetImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/YYSpriteSheetImage.h -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/YYSpriteSheetImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/YYSpriteSheetImage.m -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/sticker_packs.wasticker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/sticker_packs.wasticker -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/tray_Cuppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/tray_Cuppy.png -------------------------------------------------------------------------------- /iOS/WAStickersThirdParty/tray_TogetherAtHome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WAStickersThirdParty/tray_TogetherAtHome.png -------------------------------------------------------------------------------- /iOS/WebP.framework/Headers/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WebP.framework/Headers/config.h -------------------------------------------------------------------------------- /iOS/WebP.framework/Headers/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WebP.framework/Headers/decode.h -------------------------------------------------------------------------------- /iOS/WebP.framework/Headers/demux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WebP.framework/Headers/demux.h -------------------------------------------------------------------------------- /iOS/WebP.framework/Headers/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WebP.framework/Headers/encode.h -------------------------------------------------------------------------------- /iOS/WebP.framework/Headers/format_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WebP.framework/Headers/format_constants.h -------------------------------------------------------------------------------- /iOS/WebP.framework/Headers/mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WebP.framework/Headers/mux.h -------------------------------------------------------------------------------- /iOS/WebP.framework/Headers/mux_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WebP.framework/Headers/mux_types.h -------------------------------------------------------------------------------- /iOS/WebP.framework/Headers/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WebP.framework/Headers/types.h -------------------------------------------------------------------------------- /iOS/WebP.framework/WebP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhatsApp/stickers/HEAD/iOS/WebP.framework/WebP --------------------------------------------------------------------------------