-
-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix #357 Locus integration not working #358
Conversation
- bump Locus API library on Gradle from 0.2.7 to 0.9.45 - removed `Location` initializer with string (no longer supported) - changed LAPI dependencies in files to newer version + required refactor of corresponding code - changed `Location.java` inits with only `TAG` string resource (obsolete) - changed `Location.Accuracy` (removed support) to horizontal accuracy - removed dependency on locus api when loading cartridges (never fully implemented)
@@ -103,7 +103,7 @@ dependencies { | |||
|
|||
// Locus Maps integration | |||
//noinspection GradleDependency |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you should now delete L105 //noinspection GradleDependency
@@ -49,7 +49,8 @@ | |||
import cz.matejcik.openwig.Engine; | |||
import cz.matejcik.openwig.formats.CartridgeFile; | |||
import locus.api.objects.extra.Location; | |||
import locus.api.objects.extra.Waypoint; | |||
|
|||
//import locus.api.objects.extra.Waypoint; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From history:
locus.api.objects.extra.Waypoint
was refactored to locus.api.objects.extra.Point
, then integrated in locus.api.objects.geoData.Point
.
src/main/java/menion/android/whereyougo/gui/activity/GuidingActivity.java
Show resolved
Hide resolved
I am fine if we stay in this way. Maybe it is better to implement an own self calculated |
I have to correct me. |
@sk-juroot |
Too late for that, release got published already because of urgent adaption to website changes, but creating a second release in a short time would not be a problem. |
Hi, what's the status, please? I'm concerned about a broken integration with Locus Classic. If you're interested, I've solved the update locus api lib in ref_357_upgrade_locusapi. It is also possible to create a PR if there is interest. Cheers. |
@Dratenik |
@sk-juroot Many thanks for your initial work. |
fixes #357
Description
Location
initializer with string (no longer supported)Location
inits with onlyTAG
string resource (obsolete)Location.Accuracy
(removed support) to horizontal accuracyRelated issues
Additional context