0

I am trying to use the runnerup project but I get the below error. My Android Studio is 2.1.3:

enter image description here

Chad Nouis
  • 6,861
  • 1
  • 27
  • 28

2 Answers2

2

I am adding one more thing, I have faced same problem and fixed by downloading below source code via below github link and placed on ANT-Android-SDKs folder (if folder is empty).

https://github.com/ant-wireless/ANT-Android-SDKs/tree/c35bcf8ee9b6379e405693dbd6bec506ec533669

shubomb
  • 672
  • 7
  • 20
1

I believe you do not have the correct ant+ library

For the runner up project you need to make sure that you have the code pointing towards the correct .jar file. In this case I do not think it is picking up the ../ANT-Android-SDKs/ANT+_Android_SDK/API/antpluginlib_3-1-0.jar in your hrdevice build.gradle.

dependencies {
    provided files('libs/samsung_ble_sdk_200.jar')
    compile files('../ANT-Android-SDKs/ANT+_Android_SDK/API/antpluginlib_3-1-0.jar')
Bertrand Martel
  • 42,756
  • 16
  • 135
  • 159
VectorVictor
  • 820
  • 8
  • 17