无法使用当前运行时配置初始化 org.apache.velocity.runtime.log.CommonsLogLogChute 的实例
Failed to initialize an instance of org.apache.velocity.runtime.log.CommonsLogLogChute with the current runtime configuration
Error:Execution failed for task ':app:compileDebugJavaWithJavac'.
> org.apache.velocity.exception.VelocityException: Error initializing log: Failed to initialize an instance of org.apache.velocity.runtime.log.CommonsLogLogChute with the current runtime configuration.
将 gradle 上的配置从目标 22 更改为目标 23 时出现错误。
不知道那是什么,有什么想法吗?
相关build.gradle部分
{
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.my.package.app"
minSdkVersion 14
targetSdkVersion 23
versionCode 4
versionName "1.0"
multiDexEnabled true
}
提前感谢任何愿意提供帮助的人
编辑:依赖关系
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
provided 'org.roboguice:roboblender:3.+'
compile 'org.roboguice:roboguice:3.+'
}
更新:
问题是连接到roboguice库
在您的应用级别中添加以下提到的值 gradle。
android {
useLibrary 'org.apache.http.legacy'
.......
}
Error:Execution failed for task ':app:compileDebugJavaWithJavac'.
> org.apache.velocity.exception.VelocityException: Error initializing log: Failed to initialize an instance of org.apache.velocity.runtime.log.CommonsLogLogChute with the current runtime configuration.
将 gradle 上的配置从目标 22 更改为目标 23 时出现错误。 不知道那是什么,有什么想法吗?
相关build.gradle部分
{
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.my.package.app"
minSdkVersion 14
targetSdkVersion 23
versionCode 4
versionName "1.0"
multiDexEnabled true
}
提前感谢任何愿意提供帮助的人
编辑:依赖关系
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
provided 'org.roboguice:roboblender:3.+'
compile 'org.roboguice:roboguice:3.+'
}
更新: 问题是连接到roboguice库
在您的应用级别中添加以下提到的值 gradle。
android {
useLibrary 'org.apache.http.legacy'
.......
}