react-native-whatsapp-stickers-android
v1.0.4
Published
Native bindings for Whatsapp Sticker Packs :D
Downloads
7
Readme
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.
import WhatsappStickers from 'react-native-whatsapp-stickers-android';
// addStickerPack :: (identifier, name) -> Promise () Error
WhatsappStickers.addStickerPack(identifier, name)
.then(() => console.log(`Successfully added sticker pack ${name} to WhatsApp!`))
.catch(error => console.error(`Error adding sticker pack ${name}`, error))
// isStickerPackInstalled :: identifier -> Promise Boolean Error
WhatsappStickers.isStickerPackInstalled(identifier)
.then(installed => this.setState({ installed }))
.catch(error => console.error(error))
// fetchStickerPacks :: () -> Promise [StickerPack] Error
WhatsappStickers.fetchStickerPacks()
.then(stickerPackList => {
// contents.json can have multiple sticker packs, so this is an array
let firstStickerPack = stickerPackList[0] || {}
this.setState({ stickers: firstStickerPack.stickers })
})
.catch(error => console.error(error))
/* 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.