Android EmojiCompat:无法解析符号 BundledEmojiCompatConfig
Android EmojiCompat: cannot resolve symbol BundledEmojiCompatConfig
正在尝试使用 "Bundled fonts to use to configure EmojiCompat"
我的构建工具是:
26.0.0
我的依赖是;
compile "com.android.support:support-emoji:26.1.0"
我在应用程序 class 中的配置行是;
EmojiCompat config = new BundledEmojiCompatConfig(this);
EmojiCompat.init(this);
问题是;
BundledEmojiCompatConfig
虽然我从 Android google 示例
中手动添加了导入,但系统无法识别
import android.support.text.emoji.EmojiCompat;
import android.support.text.emoji.bundled.BundledEmojiCompatConfig;
针对不同的用例提供不同的依赖库;
我应该用
"com.android.support:support-emoji-bundled:26.1.0"
配置 "Bundled fonts to use to configure EmojiCompat" 检查 docs
正在尝试使用 "Bundled fonts to use to configure EmojiCompat"
我的构建工具是:
26.0.0
我的依赖是;
compile "com.android.support:support-emoji:26.1.0"
我在应用程序 class 中的配置行是;
EmojiCompat config = new BundledEmojiCompatConfig(this);
EmojiCompat.init(this);
问题是;
BundledEmojiCompatConfig
虽然我从 Android google 示例
中手动添加了导入,但系统无法识别import android.support.text.emoji.EmojiCompat;
import android.support.text.emoji.bundled.BundledEmojiCompatConfig;
针对不同的用例提供不同的依赖库;
我应该用
"com.android.support:support-emoji-bundled:26.1.0"
配置 "Bundled fonts to use to configure EmojiCompat" 检查 docs