相关连接:
1、http://www.jincanshen.com/2016/10/29/Android-greendao3-0/
2、https://developer.android.com/studio/build/multidex.html#about
添加依赖:
compile'net.zetetic:android-database-sqlcipher:3.5.2'
compile'com.android.support:multidex:1.0.0'
重写MyApplication 的attachBaseContext方法
....
@Override
protected void attachBaseContext(Contextbase) {
super.attachBaseContext(base);
MultiDex.install(this);
}
....
网友评论