diff --git a/android/app/src/main/java/app/organicmaps/api/RequestType.java b/android/app/src/main/java/app/organicmaps/api/RequestType.java index 0634d305cf..a60f5dc558 100644 --- a/android/app/src/main/java/app/organicmaps/api/RequestType.java +++ b/android/app/src/main/java/app/organicmaps/api/RequestType.java @@ -6,7 +6,7 @@ import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; @Retention(RetentionPolicy.SOURCE) -@IntDef({RequestType.INCORRECT, RequestType.MAP, RequestType.ROUTE, RequestType.SEARCH, RequestType.CROSSHAIR, RequestType.OAUTH2}) +@IntDef({RequestType.INCORRECT, RequestType.MAP, RequestType.ROUTE, RequestType.SEARCH, RequestType.CROSSHAIR, RequestType.OAUTH2, RequestType.MENU, RequestType.SETTINGS}) public @interface RequestType { // Represents url_scheme::ParsedMapApi::UrlType from c++ part. @@ -16,4 +16,6 @@ public @interface RequestType public static final int SEARCH = 3; public static final int CROSSHAIR = 4; public static final int OAUTH2 = 5; + public static final int MENU = 6; + public static final int SETTINGS = 7; } diff --git a/android/app/src/main/java/app/organicmaps/car/util/IntentUtils.java b/android/app/src/main/java/app/organicmaps/car/util/IntentUtils.java index 4013f1215e..93e4a87dad 100644 --- a/android/app/src/main/java/app/organicmaps/car/util/IntentUtils.java +++ b/android/app/src/main/java/app/organicmaps/car/util/IntentUtils.java @@ -96,6 +96,12 @@ public final class IntentUtils return; case RequestType.CROSSHAIR: Logger.e(TAG, "Crosshair API is not supported by Android Auto: " + uri); + return; + case RequestType.MENU: + Logger.e(TAG, "Menu API is not supported by Android Auto: " + uri); + return; + case RequestType.SETTINGS: + Logger.e(TAG, "Settings API is not supported by Android Auto: " + uri); } } diff --git a/android/app/src/main/java/app/organicmaps/intent/Factory.java b/android/app/src/main/java/app/organicmaps/intent/Factory.java index c58a84e09e..720ad7ae16 100644 --- a/android/app/src/main/java/app/organicmaps/intent/Factory.java +++ b/android/app/src/main/java/app/organicmaps/intent/Factory.java @@ -141,6 +141,10 @@ public class Factory return true; } + + // Menu and Settings url types should be implemented to support deeplinking. + case RequestType.MENU: + case RequestType.SETTINGS: } return false;