Gradle build is stuck while running project.
I have included symja-2015-08-09.jar file in libs folder.
I have no other dependencies and no other external jar files.
Can anyone please suggest any solution.
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'
}
The app runs fine after removing the jar file.
Has anyone used symja libraries in their android projects before?