react-native-whatsapp-stickers-android
Getting started
$ npm install react-native-whatsapp-stickers-android --save
Mostly automatic installation
$ react-native link react-native-whatsapp-stickers-android
Manual installation
Android
- Open up
android/app/src/main/java/[...]/MainApplication.java
- Add
import com.whatsapp_stickers.RNWhatsappStickersPackage;
to the imports at the top of the file - Add
new RNWhatsappStickersPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-whatsapp-stickers-android' project(':react-native-whatsapp-stickers-android').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-whatsapp-stickers-android/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-whatsapp-stickers-android')
Usage
First put your stickers in android/app/src/main/assets/<STICKER_PACK_IDENTIFIER_HERE>
and list the pack in android/app/src/main/assets/contents.json
, according to the sticker pack documentation provided by WhatsApp found here. Also read the sticker requirements provided by WhatsApp in the same repo. If in doubt about implementation, take a look at the example app provided in the GitHub repo for inspiration.
; // addStickerPack :: (identifier, name) -> Promise () ErrorWhatsappStickers // isStickerPackInstalled :: identifier -> Promise Boolean ErrorWhatsappStickers // fetchStickerPacks :: () -> Promise [StickerPack] ErrorWhatsappStickers /* Types of StickerPack and Sticker StickerPack :: { identifier: String, name: String, publisher: String, trayImageFile: String, publisherEmail: String, publisherWebsite: String, privacyPolicyWebsite: String, licenseAgreementWebsite: String, iosAppStoreLink: String, androidPlayStoreLink: String, totalSize: Number, isWhitelisted: Boolean, stickers: [Sticker],} Sticker :: { imageFileName: String, size: Number, emojis: [String],}*/
Issues or suggestions
If you run into problems or have a feature suggestion, feel free to make an issue on the repo or send me a personal message.
Further reading
This repo was ported from the WhatsApp Sticker Example Android app. You can find answers to sticker-related questions there, such as sticker format, size, and other requirements.