0

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?

Boken
  • 4,825
  • 10
  • 32
  • 42
Shahrukh Haider
  • 454
  • 2
  • 16

1 Answers1

0

You can try, clean the project then rebuild it. It may work. But first of all make sure you have installed proper android SDK

Rezwana
  • 132
  • 9
  • 1
    Your answer is not really an answer, but more of a suggestion. It would be more appropriate to post this as a comment on the question itself. – jacefarm Oct 19 '16 at 14:28
  • I have tried all possible combinations of cleaning, rebuilding and making the project. Jar file is compatible with SDK as it would have generated an error otherwise. – Shahrukh Haider Oct 19 '16 at 14:35