Kishor Jena
Kishor Jena
```js ... // ViewPropTypes // deprecated-react-native-prop-types } from "react-native"; import {ViewPropTypes} from 'deprecated-react-native-prop-types'; ``` I tried this but still same error.
Is it working with Android? What is Android Chrome?
I think you must add those library files cwebp dwebp in the project.
I have checked all files. If we ignore UI the important files which are responsible to sending stickers to WhatsApp are [ContentFileParser.java](https://github.com/WhatsApp/stickers/blob/main/Android/app/src/main/java/com/example/samplestickerapp/ContentFileParser.java) [StickerContentProvider.java](https://github.com/WhatsApp/stickers/blob/main/Android/app/src/main/java/com/example/samplestickerapp/StickerContentProvider.java) [StickerPack.java](https://github.com/WhatsApp/stickers/blob/main/Android/app/src/main/java/com/example/samplestickerapp/StickerPack.java) [StickerPackValidator.java](https://github.com/WhatsApp/stickers/blob/main/Android/app/src/main/java/com/example/samplestickerapp/StickerPackValidator.java) there is only single flag...
I played with codes and abled to add animated sticker pack to whatsapp and play icon is visible over sticker pack there on whatsapp but only tray_icon is visible and...
> Do we have any update for this feature? I had to write my RN module for this because currently, there is no such module on public. I had to...
FastImage 8.6 uses glide version 4.12.0 -> https://github.com/DylanVann/react-native-fast-image/blob/9ab80fcd570b7f56da66ab20e52c9a35934067c9/android/build.gradle#L60 The webp decoder library suggest to use 2.3.(glide version). read at https://github.com/zjupure/GlideWebpDecoder And the version compatibility list on https://mvnrepository.com/artifact/com.github.zjupure/webpdecoder : 2.3.x >...
This solution works like a charm. 👍🏼 🍭 😃 ### Solution 1: zjupure:webpdecoder ```groovy def glideVersion = safeExtGet('glideVersion', '4.12.0') implementation "com.github.zjupure:webpdecoder:2.2.${glideVersion}" ``` ### Solution 2: APNG4Android (supports APNG, AWEBP, AVIF,...
for displaying the Animated webp and animated png we can use APNG4Android with glide. But to extract frames by decoding and encode them after processing each frames, I have written...
In case anyone need snippet for common animation formats ```js const animationFormats = ['gif', 'webp', 'png', 'avif', 'tiff'] const isAnimated = metadata.pages > 1 && animationFormats.includes(metadata.format) ) ``` 