使用库getbase.floatingactionbutton here时遇到问题。
我收到错误: 无法实例化以下类:
我已经把
std::string decrypt(const std::string& str_in, const std::string& key, const std::string& iv)
{
std::string str_out;
CryptoPP::CBC_Mode<CryptoPP::AES>::Decryption decryption((byte*)key.c_str(), key.length(), (byte*)iv.c_str());
CryptoPP::StringSource decryptor(str_in, true,
new CryptoPP::Base64Decoder(
new CryptoPP::StreamTransformationFilter(decryption,
new CryptoPP::StringSink(str_out)
)
)
);
return str_out;
}
进入我的应用程序级build.gradle,甚至直接从github上的示例应用程序获取fab的xml代码,那么我做错了什么?我已经结束了,我无法弄明白!
的xml:
dependencies {
compile 'com.getbase:floatingactionbutton:1.10.1'
}