rmptxf/nrf52_ble_tester_project

ANDROIDX_VERSION issue

Closed this issue · 1 comments

This is amazing, thank you so much for the video and the code.
I was straggling with one thing and I think it can save lots of time to others if you mention this.
The pacakge.json file has this code:

  "cordova.plugins.diagnostic": {
    "ANDROIDX_VERSION": "1.+"
  }

The "+" means it will use the latest version available, in my case that was a newer version than the one you used when recording the video, this created lots of issues and errors (the newer versions have other dependencies).
To fix this the code should be replaced with:

  "cordova.plugins.diagnostic": {
    "ANDROIDX_VERSION": "1.0.0"
  }