Add basic API methods showPoint(s)OnMap #7
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/api-android#7
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "addBasicApi"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Adds basic API methods
Download dialog is displayed automatically on calling one of those methods, if OrganicMaps package could not be found.
CC @biodranik
Thanks! Are you using it in your app?
cc @rtsisyk
There are also .beta and .debug packages, may be useful too.
Yes, this is code I wrote for c:geo to be able to start navigation in OrganicMaps for a selected geocache from within c:geo. As those functions are mentioned in your readme (probably from mwm times) I thought I'll share it to be included in the API.
Can you give me their package names? Then I'll add them to installation detection. Alternatively I could switch installation detection to intent resolver instead of package manager.
app.organicmaps.debug
app.organicmaps.beta
Can the intent resolver display an "Open with app..." dialog to allow manual app selection?
Cannot test it here, don't have the other two packages. Relevant code is in
sendRequest()
.With regard to installation check: I've changed it to use the
intent.resolveActivity()
instead of querying thepackagemanager.getLaunchIntentForPackage()
- this should find any of those package variants, as long as it accepts the intents created bynew MapRequest().toIntent()
Thanks! It would be great to test if it works with beta or debug (and how it works with 2+ OM versions installed at the same time, for easier debugging). You can install beta for example from here: https://cdn.organicmaps.app/apk/2023.08.07-10-Google-beta.apk
This line should be removed, it's outdated and not relevant.
Ok, I thought they would be needed for intent resolution, but it looks like it does work without it. Have removed them.
Have tested with release and beta versions being installed at the same time (thanks for the link). Intent resolver dialog pops up in that case:
(Android 13, after having chosen "beta version" for the last call)
I meant com.mapswithme.maps, it should be removed :)
Are you sure that it will work without these lines in manifest? What documentation says?
c:geo does run without those lines. If I remember correctly they are only used when trying to get names of installed packages using the package manager (and only for targetSDK 30+), but not for checking if an intent can be resolved.
@ -2,3 +2,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<queries>
<!-- packages we want to see using the package manager need to be declared starting with targetSDK 30, and we need to use specific strings / cannot use @string/xxx notation -->
<package android:name="app.organicmaps"/>
So is this line required to detect if the app is installed? How it can be done?
@ -2,3 +2,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<queries>
<!-- packages we want to see using the package manager need to be declared starting with targetSDK 30, and we need to use specific strings / cannot use @string/xxx notation -->
<package android:name="app.organicmaps"/>
No longer needed by my API extension, but generally it can be done like this:
(Code excerpt from c:geos's ProcessUtils.java)
See also https://developer.android.com/training/package-visibility and https://developer.android.com/guide/topics/manifest/queries-element.
@ -2,3 +2,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<queries>
<!-- packages we want to see using the package manager need to be declared starting with targetSDK 30, and we need to use specific strings / cannot use @string/xxx notation -->
<package android:name="app.organicmaps"/>
So this line is actually needed to detect the package, right?
Can you please add this method (and test if it works) into OrganicMapsApi.java?
@ -2,3 +2,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<queries>
<!-- packages we want to see using the package manager need to be declared starting with targetSDK 30, and we need to use specific strings / cannot use @string/xxx notation -->
<package android:name="app.organicmaps"/>
Detection can be done in two ways, by checking whether the OrganicMaps-specific intent can be resolved, or by checking installation state for OrganicMaps-related package names.
I've switched to the first option, as it covers all different package names for OrganicMaps variants in one go. For this option it is not necessary to add the package name of OrganicMaps in the
<queries>
section ofAndroidManifest,xml
. (It was already there, so I did not change it.)Are you sure you want to have the second variant (checking package names) added as well?
@ -2,3 +2,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<queries>
<!-- packages we want to see using the package manager need to be declared starting with targetSDK 30, and we need to use specific strings / cannot use @string/xxx notation -->
<package android:name="app.organicmaps"/>
What are the pros and cons of both of them compared? Do they both work reliably from Android 5.0 and above? It may make sense to leave two implementations if they have different properties.
@ -2,3 +2,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<queries>
<!-- packages we want to see using the package manager need to be declared starting with targetSDK 30, and we need to use specific strings / cannot use @string/xxx notation -->
<package android:name="app.organicmaps"/>
"intent" method checks whether there is any app that can resolve the intent. As the intent is OM-specific, there will probably only OM servicing this intent (but theoretically there may be others, leading to the chooser dialog).
"package name" method checks for a specific package name, so you can "guarantee" that OM is installed.
But the actual call to the API uses the intent anyway, so I see no real need to check package names upfront. (This would be different for other types of intents such as geo-uris, if you want to have a specific app receiving it.)
I could add the check anyway, but which of the two different methods should
sendRequest
use then? And what should it do if it gets different results?My proposal is to stay with only the intent checking method.
@ -2,3 +2,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<queries>
<!-- packages we want to see using the package manager need to be declared starting with targetSDK 30, and we need to use specific strings / cannot use @string/xxx notation -->
<package android:name="app.organicmaps"/>
Agree about one method. The use-case I have in mind is to display a button "Open in Organic Maps" if it is installed. To do it, we first need to check if OM is present, before trying to use the API.
@ -2,3 +2,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<queries>
<!-- packages we want to see using the package manager need to be declared starting with targetSDK 30, and we need to use specific strings / cannot use @string/xxx notation -->
<package android:name="app.organicmaps"/>
Currently a download popup is presented on calling one of the
showPoint(s)OnMap
methods, if no app can be found that can handle the OM intent. (Similar to what the old MWM API did.)If you want to have a separate check available additionally, I can add something like
isOrganicMapsPackageInstalled()
which checks whether one of the three package variants is installed. Is that what you have in mind?@ -2,3 +2,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<queries>
<!-- packages we want to see using the package manager need to be declared starting with targetSDK 30, and we need to use specific strings / cannot use @string/xxx notation -->
<package android:name="app.organicmaps"/>
Yes! Thank you!
@ -2,3 +2,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<queries>
<!-- packages we want to see using the package manager need to be declared starting with targetSDK 30, and we need to use specific strings / cannot use @string/xxx notation -->
<package android:name="app.organicmaps"/>
have added isOrganicMapsPackageInstalled()
Thank you very much for your help!
We recently got an email that one API scenario doesn't work anymore: points are shown on the map, but there is not way to select a point and return the selected one back to the caller app. Can you please take a look at it?
Maybe our API test page should be updated too?
Yes, this was a feature supported by the old mwm API which seems not to be implemented yet in OrganicMaps lib functions. (At least I did not find them when I was scanning for integration in c:geo, which uses that function for maps.me integration as well.) That's why I left that out of
OrganicMapsApi.java
for the time being.I can give it a try, as time permits, but I cannot promise it. Work on c:geo already consumes much of my available spare time :-)
I understand, thank you again for your time and contribution!