异常:
Invoke-customs are only supported starting with Android O (--min-api 26)
解决:
build.gradle文件中android节点下增加:
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
原因:
请看代码:
config.setLogger((msg, t) -> Log.d(TAG, msg, t));
以上代码使用了lambda表达式,这属于Java 8 版本特性,所以得指定版本了。