Gradle 构建在运行项目时被卡住。
我在 libs 文件夹中包含了 symja-2015-08-09.jar 文件。
我没有其他依赖项,也没有其他外部 jar 文件。
任何人都可以提出任何解决方案。
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:24.2.1'
testCompile 'junit:junit:4.12'
}
删除 jar 文件后,应用程序运行良好。
有没有人在他们的 android 项目中使用过 symja 库?