blob: 6f8d8facd10c988ff3dab0486f0dcc2b0126f9e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package de.pixart.messenger.services;
import android.content.Context;
import android.support.text.emoji.EmojiCompat;
import android.support.text.emoji.bundled.BundledEmojiCompatConfig;
public class EmojiService extends AbstractEmojiService {
public EmojiService(Context context) {
super(context);
}
@Override
protected EmojiCompat.Config buildConfig() {
return new BundledEmojiCompatConfig(context);
}
}
|