Aghajari / AXEmojiView

an advanced library which adds emoji,sticker,... support to your Android application.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Help me!!!

bojanterzic529 opened this issue · comments

error: incompatible types: CAP#1 cannot be converted to int
Glide.with(view).load((int) sticker.getData()).apply(RequestOptions.fitCenterTransform()).into((AppCompatImageView)view);

Replace this with
Glide.with(view).load(Integer.valueOf(sticker.getData().toString())).apply(RequestOptions.fitCenterTransform()).into((AppCompatImageView)view);