@santoshpk/react-native-carplay 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +119 -0
- package/android/.idea/compiler.xml +6 -0
- package/android/.idea/gradle.xml +17 -0
- package/android/.idea/jarRepositories.xml +25 -0
- package/android/.idea/misc.xml +10 -0
- package/android/.idea/vcs.xml +6 -0
- package/android/build.gradle +63 -0
- package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +5 -0
- package/android/gradle.properties +20 -0
- package/android/gradlew +234 -0
- package/android/gradlew.bat +89 -0
- package/android/local.properties +8 -0
- package/android/src/main/AndroidManifest.xml +31 -0
- package/android/src/main/AndroidManifestNew.xml +31 -0
- package/android/src/main/java/org/birkir/carplay/CarPlayModule.kt +348 -0
- package/android/src/main/java/org/birkir/carplay/CarPlayPackage.kt +18 -0
- package/android/src/main/java/org/birkir/carplay/CarPlayService.kt +34 -0
- package/android/src/main/java/org/birkir/carplay/CarPlaySession.kt +114 -0
- package/android/src/main/java/org/birkir/carplay/parser/Ext.kt +11 -0
- package/android/src/main/java/org/birkir/carplay/parser/Parser.kt +18 -0
- package/android/src/main/java/org/birkir/carplay/parser/RCTGridTemplate.kt +28 -0
- package/android/src/main/java/org/birkir/carplay/parser/RCTListTemplate.kt +64 -0
- package/android/src/main/java/org/birkir/carplay/parser/RCTMapTemplate.kt +185 -0
- package/android/src/main/java/org/birkir/carplay/parser/RCTMessageTemplate.kt +36 -0
- package/android/src/main/java/org/birkir/carplay/parser/RCTPaneTemplate.kt +24 -0
- package/android/src/main/java/org/birkir/carplay/parser/RCTSearchTemplate.kt +41 -0
- package/android/src/main/java/org/birkir/carplay/parser/RCTTabTemplate.kt +52 -0
- package/android/src/main/java/org/birkir/carplay/parser/RCTTemplate.kt +434 -0
- package/android/src/main/java/org/birkir/carplay/parser/TemplateParser.kt +35 -0
- package/android/src/main/java/org/birkir/carplay/screens/CarScreen.kt +69 -0
- package/android/src/main/java/org/birkir/carplay/screens/CarScreenContext.kt +10 -0
- package/android/src/main/java/org/birkir/carplay/utils/EventEmitter.kt +174 -0
- package/android/src/main/java/org/birkir/carplay/utils/VirtualRenderer.kt +75 -0
- package/ios/RCTConvert+RNCarPlay.h +18 -0
- package/ios/RCTConvert+RNCarPlay.m +96 -0
- package/ios/RNCPStore.h +24 -0
- package/ios/RNCPStore.m +68 -0
- package/ios/RNCarPlay.h +29 -0
- package/ios/RNCarPlay.m +1839 -0
- package/ios/RNCarPlay.xcodeproj/project.pbxproj +300 -0
- package/lib/CarPlay.d.ts +196 -0
- package/lib/CarPlay.d.ts.map +1 -0
- package/lib/CarPlay.js +176 -0
- package/lib/CarPlay.js.map +1 -0
- package/lib/index.d.ts +44 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +64 -0
- package/lib/index.js.map +1 -0
- package/lib/interfaces/Action.d.ts +13 -0
- package/lib/interfaces/Action.d.ts.map +1 -0
- package/lib/interfaces/Action.js +3 -0
- package/lib/interfaces/Action.js.map +1 -0
- package/lib/interfaces/AlertAction.d.ts +6 -0
- package/lib/interfaces/AlertAction.d.ts.map +1 -0
- package/lib/interfaces/AlertAction.js +3 -0
- package/lib/interfaces/AlertAction.js.map +1 -0
- package/lib/interfaces/BarButton.d.ts +39 -0
- package/lib/interfaces/BarButton.d.ts.map +1 -0
- package/lib/interfaces/BarButton.js +3 -0
- package/lib/interfaces/BarButton.js.map +1 -0
- package/lib/interfaces/CarColor.d.ts +2 -0
- package/lib/interfaces/CarColor.d.ts.map +1 -0
- package/lib/interfaces/CarColor.js +3 -0
- package/lib/interfaces/CarColor.js.map +1 -0
- package/lib/interfaces/GridButton.d.ts +24 -0
- package/lib/interfaces/GridButton.d.ts.map +1 -0
- package/lib/interfaces/GridButton.js +3 -0
- package/lib/interfaces/GridButton.js.map +1 -0
- package/lib/interfaces/Header.d.ts +15 -0
- package/lib/interfaces/Header.d.ts.map +1 -0
- package/lib/interfaces/Header.js +3 -0
- package/lib/interfaces/Header.js.map +1 -0
- package/lib/interfaces/ListItem.d.ts +61 -0
- package/lib/interfaces/ListItem.d.ts.map +1 -0
- package/lib/interfaces/ListItem.js +3 -0
- package/lib/interfaces/ListItem.js.map +1 -0
- package/lib/interfaces/ListItemUpdate.d.ts +15 -0
- package/lib/interfaces/ListItemUpdate.d.ts.map +1 -0
- package/lib/interfaces/ListItemUpdate.js +3 -0
- package/lib/interfaces/ListItemUpdate.js.map +1 -0
- package/lib/interfaces/ListSection.d.ts +21 -0
- package/lib/interfaces/ListSection.d.ts.map +1 -0
- package/lib/interfaces/ListSection.js +3 -0
- package/lib/interfaces/ListSection.js.map +1 -0
- package/lib/interfaces/Maneuver.d.ts +31 -0
- package/lib/interfaces/Maneuver.d.ts.map +1 -0
- package/lib/interfaces/Maneuver.js +3 -0
- package/lib/interfaces/Maneuver.js.map +1 -0
- package/lib/interfaces/MapButton.d.ts +27 -0
- package/lib/interfaces/MapButton.d.ts.map +1 -0
- package/lib/interfaces/MapButton.js +3 -0
- package/lib/interfaces/MapButton.js.map +1 -0
- package/lib/interfaces/NavigationAlert.d.ts +44 -0
- package/lib/interfaces/NavigationAlert.d.ts.map +1 -0
- package/lib/interfaces/NavigationAlert.js +10 -0
- package/lib/interfaces/NavigationAlert.js.map +1 -0
- package/lib/interfaces/NavigationInfo.d.ts +17 -0
- package/lib/interfaces/NavigationInfo.d.ts.map +1 -0
- package/lib/interfaces/NavigationInfo.js +3 -0
- package/lib/interfaces/NavigationInfo.js.map +1 -0
- package/lib/interfaces/NavigationStep.d.ts +17 -0
- package/lib/interfaces/NavigationStep.d.ts.map +1 -0
- package/lib/interfaces/NavigationStep.js +3 -0
- package/lib/interfaces/NavigationStep.js.map +1 -0
- package/lib/interfaces/Pane.d.ts +29 -0
- package/lib/interfaces/Pane.d.ts.map +1 -0
- package/lib/interfaces/Pane.js +3 -0
- package/lib/interfaces/Pane.js.map +1 -0
- package/lib/interfaces/PauseReason.d.ts +8 -0
- package/lib/interfaces/PauseReason.d.ts.map +1 -0
- package/lib/interfaces/PauseReason.js +12 -0
- package/lib/interfaces/PauseReason.js.map +1 -0
- package/lib/interfaces/Place.d.ts +11 -0
- package/lib/interfaces/Place.d.ts.map +1 -0
- package/lib/interfaces/Place.js +3 -0
- package/lib/interfaces/Place.js.map +1 -0
- package/lib/interfaces/TextConfiguration.d.ts +6 -0
- package/lib/interfaces/TextConfiguration.d.ts.map +1 -0
- package/lib/interfaces/TextConfiguration.js +3 -0
- package/lib/interfaces/TextConfiguration.js.map +1 -0
- package/lib/interfaces/TimeRemainingColor.d.ts +2 -0
- package/lib/interfaces/TimeRemainingColor.d.ts.map +1 -0
- package/lib/interfaces/TimeRemainingColor.js +3 -0
- package/lib/interfaces/TimeRemainingColor.js.map +1 -0
- package/lib/interfaces/TravelEstimates.d.ts +37 -0
- package/lib/interfaces/TravelEstimates.d.ts.map +1 -0
- package/lib/interfaces/TravelEstimates.js +3 -0
- package/lib/interfaces/TravelEstimates.js.map +1 -0
- package/lib/interfaces/VoiceControlState.d.ts +8 -0
- package/lib/interfaces/VoiceControlState.d.ts.map +1 -0
- package/lib/interfaces/VoiceControlState.js +3 -0
- package/lib/interfaces/VoiceControlState.js.map +1 -0
- package/lib/navigation/NavigationSession.d.ts +18 -0
- package/lib/navigation/NavigationSession.d.ts.map +1 -0
- package/lib/navigation/NavigationSession.js +51 -0
- package/lib/navigation/NavigationSession.js.map +1 -0
- package/lib/navigation/Trip.d.ts +22 -0
- package/lib/navigation/Trip.d.ts.map +1 -0
- package/lib/navigation/Trip.js +18 -0
- package/lib/navigation/Trip.js.map +1 -0
- package/lib/templates/ActionSheetTemplate.d.ts +18 -0
- package/lib/templates/ActionSheetTemplate.d.ts.map +1 -0
- package/lib/templates/ActionSheetTemplate.js +16 -0
- package/lib/templates/ActionSheetTemplate.js.map +1 -0
- package/lib/templates/AlertTemplate.d.ts +17 -0
- package/lib/templates/AlertTemplate.d.ts.map +1 -0
- package/lib/templates/AlertTemplate.js +16 -0
- package/lib/templates/AlertTemplate.js.map +1 -0
- package/lib/templates/ContactTemplate.d.ts +36 -0
- package/lib/templates/ContactTemplate.d.ts.map +1 -0
- package/lib/templates/ContactTemplate.js +16 -0
- package/lib/templates/ContactTemplate.js.map +1 -0
- package/lib/templates/GridTemplate.d.ts +38 -0
- package/lib/templates/GridTemplate.d.ts.map +1 -0
- package/lib/templates/GridTemplate.js +17 -0
- package/lib/templates/GridTemplate.js.map +1 -0
- package/lib/templates/InformationTemplate.d.ts +28 -0
- package/lib/templates/InformationTemplate.d.ts.map +1 -0
- package/lib/templates/InformationTemplate.js +28 -0
- package/lib/templates/InformationTemplate.js.map +1 -0
- package/lib/templates/ListTemplate.d.ts +112 -0
- package/lib/templates/ListTemplate.d.ts.map +1 -0
- package/lib/templates/ListTemplate.js +57 -0
- package/lib/templates/ListTemplate.js.map +1 -0
- package/lib/templates/MapTemplate.d.ts +171 -0
- package/lib/templates/MapTemplate.d.ts.map +1 -0
- package/lib/templates/MapTemplate.js +115 -0
- package/lib/templates/MapTemplate.js.map +1 -0
- package/lib/templates/NowPlayingTemplate.d.ts +31 -0
- package/lib/templates/NowPlayingTemplate.d.ts.map +1 -0
- package/lib/templates/NowPlayingTemplate.js +18 -0
- package/lib/templates/NowPlayingTemplate.js.map +1 -0
- package/lib/templates/PointOfInterestTemplate.d.ts +38 -0
- package/lib/templates/PointOfInterestTemplate.d.ts.map +1 -0
- package/lib/templates/PointOfInterestTemplate.js +18 -0
- package/lib/templates/PointOfInterestTemplate.js.map +1 -0
- package/lib/templates/SearchTemplate.d.ts +32 -0
- package/lib/templates/SearchTemplate.d.ts.map +1 -0
- package/lib/templates/SearchTemplate.js +41 -0
- package/lib/templates/SearchTemplate.js.map +1 -0
- package/lib/templates/TabBarTemplate.d.ts +27 -0
- package/lib/templates/TabBarTemplate.d.ts.map +1 -0
- package/lib/templates/TabBarTemplate.js +26 -0
- package/lib/templates/TabBarTemplate.js.map +1 -0
- package/lib/templates/Template.d.ts +83 -0
- package/lib/templates/Template.d.ts.map +1 -0
- package/lib/templates/Template.js +71 -0
- package/lib/templates/Template.js.map +1 -0
- package/lib/templates/VoiceControlTemplate.d.ts +18 -0
- package/lib/templates/VoiceControlTemplate.d.ts.map +1 -0
- package/lib/templates/VoiceControlTemplate.js +20 -0
- package/lib/templates/VoiceControlTemplate.js.map +1 -0
- package/lib/templates/android/AndroidNavigationBaseTemplate.d.ts +19 -0
- package/lib/templates/android/AndroidNavigationBaseTemplate.d.ts.map +1 -0
- package/lib/templates/android/AndroidNavigationBaseTemplate.js +29 -0
- package/lib/templates/android/AndroidNavigationBaseTemplate.js.map +1 -0
- package/lib/templates/android/MessageTemplate.d.ts +16 -0
- package/lib/templates/android/MessageTemplate.d.ts.map +1 -0
- package/lib/templates/android/MessageTemplate.js +11 -0
- package/lib/templates/android/MessageTemplate.js.map +1 -0
- package/lib/templates/android/NavigationTemplate.d.ts +44 -0
- package/lib/templates/android/NavigationTemplate.d.ts.map +1 -0
- package/lib/templates/android/NavigationTemplate.js +17 -0
- package/lib/templates/android/NavigationTemplate.js.map +1 -0
- package/lib/templates/android/PaneTemplate.d.ts +20 -0
- package/lib/templates/android/PaneTemplate.d.ts.map +1 -0
- package/lib/templates/android/PaneTemplate.js +17 -0
- package/lib/templates/android/PaneTemplate.js.map +1 -0
- package/lib/templates/android/PlaceListMapTemplate.d.ts +78 -0
- package/lib/templates/android/PlaceListMapTemplate.d.ts.map +1 -0
- package/lib/templates/android/PlaceListMapTemplate.js +25 -0
- package/lib/templates/android/PlaceListMapTemplate.js.map +1 -0
- package/lib/templates/android/PlaceListNavigationTemplate.d.ts +51 -0
- package/lib/templates/android/PlaceListNavigationTemplate.d.ts.map +1 -0
- package/lib/templates/android/PlaceListNavigationTemplate.js +20 -0
- package/lib/templates/android/PlaceListNavigationTemplate.js.map +1 -0
- package/lib/templates/android/RoutePreviewNavigationTemplate.d.ts +60 -0
- package/lib/templates/android/RoutePreviewNavigationTemplate.d.ts.map +1 -0
- package/lib/templates/android/RoutePreviewNavigationTemplate.js +23 -0
- package/lib/templates/android/RoutePreviewNavigationTemplate.js.map +1 -0
- package/lib/tsconfig.tsbuildinfo +1 -0
- package/package.json +49 -0
- package/react-native-carplay.podspec +21 -0
- package/src/CarPlay.ts +320 -0
- package/src/index.ts +50 -0
- package/src/interfaces/Action.ts +15 -0
- package/src/interfaces/AlertAction.ts +5 -0
- package/src/interfaces/BarButton.ts +41 -0
- package/src/interfaces/CarColor.ts +1 -0
- package/src/interfaces/GridButton.ts +25 -0
- package/src/interfaces/Header.ts +16 -0
- package/src/interfaces/ListItem.ts +61 -0
- package/src/interfaces/ListItemUpdate.ts +14 -0
- package/src/interfaces/ListSection.ts +21 -0
- package/src/interfaces/Maneuver.ts +30 -0
- package/src/interfaces/MapButton.ts +27 -0
- package/src/interfaces/NavigationAlert.ts +46 -0
- package/src/interfaces/NavigationInfo.ts +19 -0
- package/src/interfaces/NavigationStep.ts +17 -0
- package/src/interfaces/Pane.ts +29 -0
- package/src/interfaces/PauseReason.ts +7 -0
- package/src/interfaces/Place.ts +12 -0
- package/src/interfaces/TextConfiguration.ts +5 -0
- package/src/interfaces/TimeRemainingColor.ts +1 -0
- package/src/interfaces/TravelEstimates.ts +39 -0
- package/src/interfaces/VoiceControlState.ts +8 -0
- package/src/navigation/NavigationSession.ts +57 -0
- package/src/navigation/Trip.ts +36 -0
- package/src/templates/ActionSheetTemplate.ts +21 -0
- package/src/templates/AlertTemplate.ts +20 -0
- package/src/templates/ContactTemplate.ts +45 -0
- package/src/templates/GridTemplate.ts +45 -0
- package/src/templates/InformationTemplate.ts +42 -0
- package/src/templates/ListTemplate.ts +150 -0
- package/src/templates/MapTemplate.ts +231 -0
- package/src/templates/NowPlayingTemplate.ts +38 -0
- package/src/templates/PointOfInterestTemplate.ts +42 -0
- package/src/templates/SearchTemplate.ts +70 -0
- package/src/templates/TabBarTemplate.ts +56 -0
- package/src/templates/Template.ts +165 -0
- package/src/templates/VoiceControlTemplate.ts +25 -0
- package/src/templates/android/AndroidNavigationBaseTemplate.ts +46 -0
- package/src/templates/android/MessageTemplate.ts +19 -0
- package/src/templates/android/NavigationTemplate.ts +50 -0
- package/src/templates/android/PaneTemplate.ts +26 -0
- package/src/templates/android/PlaceListMapTemplate.ts +94 -0
- package/src/templates/android/PlaceListNavigationTemplate.ts +57 -0
- package/src/templates/android/RoutePreviewNavigationTemplate.ts +66 -0
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { Action, HeaderAction } from '../../interfaces/Action';
|
|
2
|
+
import { Place } from '../../interfaces/Place';
|
|
3
|
+
import { ListItem } from '../../interfaces/ListItem';
|
|
4
|
+
import { BaseEvent, Template, TemplateConfig } from '../Template';
|
|
5
|
+
export interface MapItemPressEvent extends BaseEvent {
|
|
6
|
+
/**
|
|
7
|
+
* Button ID
|
|
8
|
+
*/
|
|
9
|
+
id: string;
|
|
10
|
+
/**
|
|
11
|
+
* Button Index
|
|
12
|
+
*/
|
|
13
|
+
index: number;
|
|
14
|
+
/**
|
|
15
|
+
* template ID
|
|
16
|
+
*/
|
|
17
|
+
templateId: string;
|
|
18
|
+
}
|
|
19
|
+
export interface PlaceListMapTemplateConfig extends TemplateConfig {
|
|
20
|
+
/**
|
|
21
|
+
* Sets an ActionStrip with a list of template-scoped actions for this template.
|
|
22
|
+
* The Action buttons in Map Based Template are automatically adjusted based on the screen size. On narrow width screen, icon Actions show by default. If no icon specify, showing title Actions instead. On wider width screen, title Actions show by default. If no title specify, showing icon Actions instead.
|
|
23
|
+
* @limit This template allows up to 4 Actions in its ActionStrip. Of the 4 allowed Actions, it can either be a title Action as set via setTitle, or a icon Action as set via setIcon.
|
|
24
|
+
*/
|
|
25
|
+
actions?: Action[];
|
|
26
|
+
/**
|
|
27
|
+
* Sets the anchor maker on the map.
|
|
28
|
+
* An anchor marker will not be displayed unless set with this method.
|
|
29
|
+
* The anchor marker is displayed differently from other markers by the host.
|
|
30
|
+
* If not null, an anchor marker will be shown at the specified CarLocation on the map. The camera will adapt to always have the anchor marker visible within its viewport, along with other places' markers from Row that are currently visible in the Pane. This can be used to provide a reference point on the map (e.g. the center of a search region) as the user pages through the Pane's markers, for example.
|
|
31
|
+
*/
|
|
32
|
+
anchor?: Place;
|
|
33
|
+
/**
|
|
34
|
+
* Sets whether to show the current location in the map.
|
|
35
|
+
* The map template will show the user's current location on the map.
|
|
36
|
+
* This functionality requires the app to have either the ACCESS_FINE_LOCATION or ACCESS_COARSE_LOCATION permission. When isEnabled is true, the host may receive location updates from the app in order to show the user's current location.
|
|
37
|
+
*/
|
|
38
|
+
currentLocationEnabled?: boolean;
|
|
39
|
+
/**
|
|
40
|
+
* Sets the Action that will be displayed in the header of the template.
|
|
41
|
+
* Unless set with this method, the template will not have a header action.
|
|
42
|
+
* @limit This template only supports either one of APP_ICON and BACK as a header Action.
|
|
43
|
+
*/
|
|
44
|
+
headerAction?: HeaderAction;
|
|
45
|
+
/**
|
|
46
|
+
* Sets an ItemList to show in a list view along with the map.
|
|
47
|
+
* Unless set with this method, the template will not show an item list.
|
|
48
|
+
* To show a marker corresponding to a point of interest represented by a row, set the Place instance via setMetadata. The host will display the PlaceMarker in both the map and the list view as the row becomes visible.
|
|
49
|
+
* @limit The number of items in the ItemList should be smaller or equal than the limit provided by CONTENT_LIMIT_TYPE_PLACE_LIST. The host will ignore any items over that limit. The list itself cannot be selectable as set via setOnSelectedListener. Each Row can add up to 2 lines of texts via addText and cannot contain a Toggle.
|
|
50
|
+
*/
|
|
51
|
+
itemList?: ListItem[];
|
|
52
|
+
/**
|
|
53
|
+
* Sets whether the template is in a loading state.
|
|
54
|
+
*/
|
|
55
|
+
loading?: boolean;
|
|
56
|
+
/**
|
|
57
|
+
* Title for the map
|
|
58
|
+
*/
|
|
59
|
+
title?: string;
|
|
60
|
+
onListItemPressed?(e: MapItemPressEvent): void;
|
|
61
|
+
onBackButtonPressed?(): void;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* A template that displays a map along with a list of places.
|
|
65
|
+
* The map can display markers corresponding to the places in the list. See setItemList for details.
|
|
66
|
+
* Template Restrictions In regards to template refreshes, as described in onGetTemplate, this template is considered a refresh of a previous one if:
|
|
67
|
+
* - The previous template is in a loading state (see setLoading, or
|
|
68
|
+
* - The template title has not changed, and the number of rows and the title (not counting spans) of each row between the previous and new ItemLists have not changed.
|
|
69
|
+
* - The template is sent in response to a user-initiated content refresh request. (see setOnContentRefreshListener.
|
|
70
|
+
*/
|
|
71
|
+
export declare class PlaceListMapTemplate extends Template<PlaceListMapTemplateConfig> {
|
|
72
|
+
get type(): string;
|
|
73
|
+
get eventMap(): {
|
|
74
|
+
didSelectPointOfInterest: string;
|
|
75
|
+
backButtonPressed: string;
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
//# sourceMappingURL=PlaceListMapTemplate.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlaceListMapTemplate.d.ts","sourceRoot":"","sources":["../../../src/templates/android/PlaceListMapTemplate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAK/D,OAAO,EAAE,KAAK,EAAE,MAAM,wBAAwB,CAAC;AAC/C,OAAO,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AACrD,OAAO,EAAE,SAAS,EAAE,QAAQ,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAElE,MAAM,WAAW,iBAAkB,SAAQ,SAAS;IAClD;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,0BAA2B,SAAQ,cAAc;IAChE;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;;;;OAKG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC;IACf;;;;OAIG;IACH,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC;;;;OAIG;IACH,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,QAAQ,EAAE,CAAC;IACtB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,iBAAiB,CAAC,CAAC,CAAC,EAAE,iBAAiB,GAAG,IAAI,CAAC;IAE/C,mBAAmB,CAAC,IAAI,IAAI,CAAC;CAE9B;AAED;;;;;;;GAOG;AACH,qBAAa,oBAAqB,SAAQ,QAAQ,CAAC,0BAA0B,CAAC;IAC5E,IAAW,IAAI,IAAI,MAAM,CAExB;IAED,IAAI,QAAQ;;;MAKX;CAGF"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PlaceListMapTemplate = void 0;
|
|
4
|
+
const Template_1 = require("../Template");
|
|
5
|
+
/**
|
|
6
|
+
* A template that displays a map along with a list of places.
|
|
7
|
+
* The map can display markers corresponding to the places in the list. See setItemList for details.
|
|
8
|
+
* Template Restrictions In regards to template refreshes, as described in onGetTemplate, this template is considered a refresh of a previous one if:
|
|
9
|
+
* - The previous template is in a loading state (see setLoading, or
|
|
10
|
+
* - The template title has not changed, and the number of rows and the title (not counting spans) of each row between the previous and new ItemLists have not changed.
|
|
11
|
+
* - The template is sent in response to a user-initiated content refresh request. (see setOnContentRefreshListener.
|
|
12
|
+
*/
|
|
13
|
+
class PlaceListMapTemplate extends Template_1.Template {
|
|
14
|
+
get type() {
|
|
15
|
+
return 'place-list-map';
|
|
16
|
+
}
|
|
17
|
+
get eventMap() {
|
|
18
|
+
return {
|
|
19
|
+
didSelectPointOfInterest: 'onListItemPressed',
|
|
20
|
+
backButtonPressed: 'onBackButtonPressed',
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
exports.PlaceListMapTemplate = PlaceListMapTemplate;
|
|
25
|
+
//# sourceMappingURL=PlaceListMapTemplate.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlaceListMapTemplate.js","sourceRoot":"","sources":["../../../src/templates/android/PlaceListMapTemplate.ts"],"names":[],"mappings":";;;AAOA,0CAAkE;AAiElE;;;;;;;GAOG;AACH,MAAa,oBAAqB,SAAQ,mBAAoC;IAC5E,IAAW,IAAI;QACb,OAAO,gBAAgB,CAAC;IAC1B,CAAC;IAED,IAAI,QAAQ;QACV,OAAO;YACL,wBAAwB,EAAE,mBAAmB;YAC7C,iBAAiB,EAAE,qBAAqB;SACzC,CAAC;IACJ,CAAC;CAGF;AAbD,oDAaC"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Action } from '../../interfaces/Action';
|
|
2
|
+
import { Header } from '../../interfaces/Header';
|
|
3
|
+
import { ListItem } from '../../interfaces/ListItem';
|
|
4
|
+
import { AndroidNavigationBaseTemplate, AndroidNavigationBaseTemplateConfig } from './AndroidNavigationBaseTemplate';
|
|
5
|
+
export interface PlaceListNavigationTemplateConfig extends AndroidNavigationBaseTemplateConfig {
|
|
6
|
+
/**
|
|
7
|
+
* Sets an ActionStrip with a list of template-scoped actions for this template.
|
|
8
|
+
* The Action buttons in Map Based Template are automatically adjusted based on the screen size. On narrow width screen, icon Actions show by default. If no icon specify, showing title Actions instead. On wider width screen, title Actions show by default. If no title specify, showing icon Actions instead.
|
|
9
|
+
* @limit This template allows up to 4 Actions in its ActionStrip. Of the 4 allowed Actions, it can either be a title Action as set via setTitle, or a icon Action as set via setIcon.
|
|
10
|
+
*/
|
|
11
|
+
actions?: Action[];
|
|
12
|
+
/**
|
|
13
|
+
* Sets the Header for this template.
|
|
14
|
+
*/
|
|
15
|
+
header?: Header;
|
|
16
|
+
/**
|
|
17
|
+
* Sets an ItemList to show in a list view along with the map.
|
|
18
|
+
* Unless set with this method, the template will not show an item list.
|
|
19
|
+
* To show a marker corresponding to a point of interest represented by a row, set the Place instance via setMetadata. The host will display the PlaceMarker in both the map and the list view as the row becomes visible.
|
|
20
|
+
* @limit The number of items in the ItemList should be smaller or equal than the limit provided by CONTENT_LIMIT_TYPE_PLACE_LIST. The host will ignore any items over that limit. The list itself cannot be selectable as set via setOnSelectedListener. Each Row can add up to 2 lines of texts via addText and cannot contain a Toggle.
|
|
21
|
+
*/
|
|
22
|
+
itemList?: ListItem[];
|
|
23
|
+
/**
|
|
24
|
+
* Sets whether the template is in a loading state.
|
|
25
|
+
*/
|
|
26
|
+
loading?: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* Sets an ActionStrip with a list of map-control related actions for this template, such as pan or zoom.
|
|
29
|
+
* The host will draw the buttons in an area that is associated with map controls.
|
|
30
|
+
* If the app does not include the PAN button in this ActionStrip, the app will not receive the user input for panning gestures from SurfaceCallback methods, and the host will exit any previously activated pan mode.
|
|
31
|
+
* @limit This template allows up to 4 Actions in its map ActionStrip. Only Actions with icons set via setIcon are allowed.
|
|
32
|
+
*/
|
|
33
|
+
mapButtons?: Action[];
|
|
34
|
+
/**
|
|
35
|
+
* Title for the map
|
|
36
|
+
*/
|
|
37
|
+
title?: string;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* A template that supports showing a list of places alongside a custom drawn map.
|
|
41
|
+
* The template itself does not expose a drawing surface. In order to draw on the canvas, use setSurfaceCallback.
|
|
42
|
+
* Template Restrictions In regards to template refreshes, as described in onGetTemplate, this template is considered a refresh of a previous one if:
|
|
43
|
+
* - The previous template is in a loading state (see setLoading, or
|
|
44
|
+
* - The template title has not changed, and the number of rows and the title (not counting spans) of each row between the previous and new ItemLists have not changed.
|
|
45
|
+
* - The template is sent in response to a user-initiated content refresh request. (see setOnContentRefreshListener.
|
|
46
|
+
* In order to use this template your car app MUST declare that it uses the **androidx.car.app.NAVIGATION_TEMPLATES** permission in the manifest.
|
|
47
|
+
*/
|
|
48
|
+
export declare class PlaceListNavigationTemplate extends AndroidNavigationBaseTemplate<PlaceListNavigationTemplateConfig> {
|
|
49
|
+
get type(): string;
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=PlaceListNavigationTemplate.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlaceListNavigationTemplate.d.ts","sourceRoot":"","sources":["../../../src/templates/android/PlaceListNavigationTemplate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AACrD,OAAO,EACL,6BAA6B,EAC7B,mCAAmC,EACpC,MAAM,iCAAiC,CAAC;AAEzC,MAAM,WAAW,iCAAkC,SAAQ,mCAAmC;IAC5F;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,QAAQ,EAAE,CAAC;IACtB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;;;;OAKG;IACH,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;;;;GAQG;AACH,qBAAa,2BAA4B,SAAQ,6BAA6B,CAAC,iCAAiC,CAAC;IAC/G,IAAW,IAAI,IAAI,MAAM,CAExB;CACF"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PlaceListNavigationTemplate = void 0;
|
|
4
|
+
const AndroidNavigationBaseTemplate_1 = require("./AndroidNavigationBaseTemplate");
|
|
5
|
+
/**
|
|
6
|
+
* A template that supports showing a list of places alongside a custom drawn map.
|
|
7
|
+
* The template itself does not expose a drawing surface. In order to draw on the canvas, use setSurfaceCallback.
|
|
8
|
+
* Template Restrictions In regards to template refreshes, as described in onGetTemplate, this template is considered a refresh of a previous one if:
|
|
9
|
+
* - The previous template is in a loading state (see setLoading, or
|
|
10
|
+
* - The template title has not changed, and the number of rows and the title (not counting spans) of each row between the previous and new ItemLists have not changed.
|
|
11
|
+
* - The template is sent in response to a user-initiated content refresh request. (see setOnContentRefreshListener.
|
|
12
|
+
* In order to use this template your car app MUST declare that it uses the **androidx.car.app.NAVIGATION_TEMPLATES** permission in the manifest.
|
|
13
|
+
*/
|
|
14
|
+
class PlaceListNavigationTemplate extends AndroidNavigationBaseTemplate_1.AndroidNavigationBaseTemplate {
|
|
15
|
+
get type() {
|
|
16
|
+
return 'place-navigation-map';
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.PlaceListNavigationTemplate = PlaceListNavigationTemplate;
|
|
20
|
+
//# sourceMappingURL=PlaceListNavigationTemplate.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PlaceListNavigationTemplate.js","sourceRoot":"","sources":["../../../src/templates/android/PlaceListNavigationTemplate.ts"],"names":[],"mappings":";;;AAGA,mFAGyC;AAqCzC;;;;;;;;GAQG;AACH,MAAa,2BAA4B,SAAQ,6DAAgE;IAC/G,IAAW,IAAI;QACb,OAAO,sBAAsB,CAAC;IAChC,CAAC;CACF;AAJD,kEAIC"}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { Action } from '../../interfaces/Action';
|
|
2
|
+
import { Header } from '../../interfaces/Header';
|
|
3
|
+
import { ListItem } from '../../interfaces/ListItem';
|
|
4
|
+
import { AndroidNavigationBaseTemplate, AndroidNavigationBaseTemplateConfig } from './AndroidNavigationBaseTemplate';
|
|
5
|
+
export interface RoutePreviewNavigationTemplateConfig extends AndroidNavigationBaseTemplateConfig {
|
|
6
|
+
/**
|
|
7
|
+
* Sets an ActionStrip with a list of template-scoped actions for this template.
|
|
8
|
+
* The Action buttons in Map Based Template are automatically adjusted based on the screen size. On narrow width screen, icon Actions show by default. If no icon specify, showing title Actions instead. On wider width screen, title Actions show by default. If no title specify, showing icon Actions instead.
|
|
9
|
+
* @limit This template allows up to 4 Actions in its ActionStrip. Of the 4 allowed Actions, it can either be a title Action as set via setTitle, or a icon Action as set via setIcon.
|
|
10
|
+
*/
|
|
11
|
+
actions?: Action[];
|
|
12
|
+
/**
|
|
13
|
+
* Sets the Header for this template.
|
|
14
|
+
*/
|
|
15
|
+
header?: Header;
|
|
16
|
+
/**
|
|
17
|
+
* Sets an ItemList to show in a list view along with the map.
|
|
18
|
+
* Unless set with this method, the template will not show an item list.
|
|
19
|
+
* To show a marker corresponding to a point of interest represented by a row, set the Place instance via setMetadata. The host will display the PlaceMarker in both the map and the list view as the row becomes visible.
|
|
20
|
+
* @limit The number of items in the ItemList should be smaller or equal than the limit provided by CONTENT_LIMIT_TYPE_PLACE_LIST. The host will ignore any items over that limit. The list itself cannot be selectable as set via setOnSelectedListener. Each Row can add up to 2 lines of texts via addText and cannot contain a Toggle.
|
|
21
|
+
*/
|
|
22
|
+
itemList?: ListItem[];
|
|
23
|
+
/**
|
|
24
|
+
* Sets whether the template is in a loading state.
|
|
25
|
+
*/
|
|
26
|
+
loading?: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* Sets an ActionStrip with a list of map-control related actions for this template, such as pan or zoom.
|
|
29
|
+
* The host will draw the buttons in an area that is associated with map controls.
|
|
30
|
+
* If the app does not include the PAN button in this ActionStrip, the app will not receive the user input for panning gestures from SurfaceCallback methods, and the host will exit any previously activated pan mode.
|
|
31
|
+
* @limit This template allows up to 4 Actions in its map ActionStrip. Only Actions with icons set via setIcon are allowed.
|
|
32
|
+
*/
|
|
33
|
+
mapButtons?: Action[];
|
|
34
|
+
/**
|
|
35
|
+
* Sets the Action to allow users to request navigation using the currently selected route.
|
|
36
|
+
* This should not be null if the template is not in a loading state (see #setIsLoading}), and the Action's title must be set.
|
|
37
|
+
* Spans are not supported in the navigate action and will be ignored.
|
|
38
|
+
*/
|
|
39
|
+
navigateAction?: Action;
|
|
40
|
+
/**
|
|
41
|
+
* Title for the map
|
|
42
|
+
*/
|
|
43
|
+
title?: string;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* A template that supports showing a list of routes alongside a custom drawn map.
|
|
47
|
+
* The list must have its ItemList.OnSelectedListener set, and the template must have its navigate action set (see setNavigateAction). These are used in conjunction to inform the app that:
|
|
48
|
+
* - A route has been selected. The app should also highlight the route on the map surface.
|
|
49
|
+
* - A navigate action has been triggered. The app should begin navigation using the selected route.
|
|
50
|
+
* The template itself does not expose a drawing surface. In order to draw on the canvas, use setSurfaceCallback.
|
|
51
|
+
* Template Restrictions In regards to template refreshes, as described in onGetTemplate, this template is considered a refresh of a previous one if:
|
|
52
|
+
* - The previous template is in a loading state (see setLoading, or
|
|
53
|
+
* - The template title has not changed, and the number of rows and the title (not counting spans) of each row between the previous and new ItemLists have not changed.
|
|
54
|
+
* Note that specifically, this means the app should not use this template to continuously refresh the routes as the car moves.
|
|
55
|
+
* In order to use this template your car app MUST declare that it uses the **androidx.car.app.NAVIGATION_TEMPLATES** permission in the manifest.
|
|
56
|
+
*/
|
|
57
|
+
export declare class RoutePreviewNavigationTemplate extends AndroidNavigationBaseTemplate<RoutePreviewNavigationTemplateConfig> {
|
|
58
|
+
get type(): string;
|
|
59
|
+
}
|
|
60
|
+
//# sourceMappingURL=RoutePreviewNavigationTemplate.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RoutePreviewNavigationTemplate.d.ts","sourceRoot":"","sources":["../../../src/templates/android/RoutePreviewNavigationTemplate.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,MAAM,EAAE,MAAM,yBAAyB,CAAC;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,2BAA2B,CAAC;AACrD,OAAO,EACL,6BAA6B,EAC7B,mCAAmC,EACpC,MAAM,iCAAiC,CAAC;AAEzC,MAAM,WAAW,oCAAqC,SAAQ,mCAAmC;IAC/F;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;;OAKG;IACH,QAAQ,CAAC,EAAE,QAAQ,EAAE,CAAC;IACtB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB;;;;;OAKG;IACH,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;;;;;;;;;GAWG;AACH,qBAAa,8BAA+B,SAAQ,6BAA6B,CAAC,oCAAoC,CAAC;IACrH,IAAW,IAAI,IAAI,MAAM,CAExB;CACF"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RoutePreviewNavigationTemplate = void 0;
|
|
4
|
+
const AndroidNavigationBaseTemplate_1 = require("./AndroidNavigationBaseTemplate");
|
|
5
|
+
/**
|
|
6
|
+
* A template that supports showing a list of routes alongside a custom drawn map.
|
|
7
|
+
* The list must have its ItemList.OnSelectedListener set, and the template must have its navigate action set (see setNavigateAction). These are used in conjunction to inform the app that:
|
|
8
|
+
* - A route has been selected. The app should also highlight the route on the map surface.
|
|
9
|
+
* - A navigate action has been triggered. The app should begin navigation using the selected route.
|
|
10
|
+
* The template itself does not expose a drawing surface. In order to draw on the canvas, use setSurfaceCallback.
|
|
11
|
+
* Template Restrictions In regards to template refreshes, as described in onGetTemplate, this template is considered a refresh of a previous one if:
|
|
12
|
+
* - The previous template is in a loading state (see setLoading, or
|
|
13
|
+
* - The template title has not changed, and the number of rows and the title (not counting spans) of each row between the previous and new ItemLists have not changed.
|
|
14
|
+
* Note that specifically, this means the app should not use this template to continuously refresh the routes as the car moves.
|
|
15
|
+
* In order to use this template your car app MUST declare that it uses the **androidx.car.app.NAVIGATION_TEMPLATES** permission in the manifest.
|
|
16
|
+
*/
|
|
17
|
+
class RoutePreviewNavigationTemplate extends AndroidNavigationBaseTemplate_1.AndroidNavigationBaseTemplate {
|
|
18
|
+
get type() {
|
|
19
|
+
return 'route-preview-navigation';
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.RoutePreviewNavigationTemplate = RoutePreviewNavigationTemplate;
|
|
23
|
+
//# sourceMappingURL=RoutePreviewNavigationTemplate.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RoutePreviewNavigationTemplate.js","sourceRoot":"","sources":["../../../src/templates/android/RoutePreviewNavigationTemplate.ts"],"names":[],"mappings":";;;AAGA,mFAGyC;AA2CzC;;;;;;;;;;;GAWG;AACH,MAAa,8BAA+B,SAAQ,6DAAmE;IACrH,IAAW,IAAI;QACb,OAAO,0BAA0B,CAAC;IACpC,CAAC;CACF;AAJD,wEAIC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/react-native/types/modules/batchedbridge.d.ts","../../../node_modules/react-native/types/modules/codegen.d.ts","../../../node_modules/react-native/types/modules/devtools.d.ts","../../../node_modules/react-native/types/modules/globals.d.ts","../../../node_modules/react-native/types/modules/launchscreen.d.ts","../../../node_modules/react-native/libraries/image/imageresizemode.d.ts","../../../node_modules/react-native/libraries/stylesheet/stylesheettypes.d.ts","../../../node_modules/react-native/libraries/stylesheet/stylesheet.d.ts","../../../node_modules/react-native/libraries/stylesheet/processcolor.d.ts","../../../node_modules/react-native/libraries/actionsheetios/actionsheetios.d.ts","../../../node_modules/react-native/libraries/alert/alert.d.ts","../../../node_modules/@types/react/ts5.0/global.d.ts","../../../node_modules/csstype/index.d.ts","../../../node_modules/@types/prop-types/index.d.ts","../../../node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/@types/react/ts5.0/index.d.ts","../../../node_modules/react-native/types/private/utilities.d.ts","../../../node_modules/react-native/types/public/insets.d.ts","../../../node_modules/react-native/libraries/reactnative/rendererproxy.d.ts","../../../node_modules/react-native/types/public/reactnativetypes.d.ts","../../../node_modules/react-native/libraries/types/coreeventtypes.d.ts","../../../node_modules/react-native/types/public/reactnativerenderer.d.ts","../../../node_modules/react-native/libraries/components/touchable/touchable.d.ts","../../../node_modules/react-native/libraries/components/view/viewaccessibility.d.ts","../../../node_modules/react-native/libraries/components/view/viewproptypes.d.ts","../../../node_modules/react-native/libraries/components/refreshcontrol/refreshcontrol.d.ts","../../../node_modules/react-native/libraries/components/scrollview/scrollview.d.ts","../../../node_modules/react-native/libraries/components/view/view.d.ts","../../../node_modules/react-native/libraries/image/imagesource.d.ts","../../../node_modules/react-native/libraries/image/image.d.ts","../../../node_modules/react-native/libraries/lists/virtualizedlist.d.ts","../../../node_modules/react-native/libraries/lists/flatlist.d.ts","../../../node_modules/react-native/libraries/lists/sectionlist.d.ts","../../../node_modules/react-native/libraries/text/text.d.ts","../../../node_modules/react-native/libraries/animated/animated.d.ts","../../../node_modules/react-native/libraries/animated/easing.d.ts","../../../node_modules/react-native/libraries/animated/useanimatedvalue.d.ts","../../../node_modules/react-native/libraries/vendor/emitter/eventemitter.d.ts","../../../node_modules/react-native/libraries/eventemitter/rctdeviceeventemitter.d.ts","../../../node_modules/react-native/libraries/eventemitter/rctnativeappeventemitter.d.ts","../../../node_modules/react-native/libraries/appstate/appstate.d.ts","../../../node_modules/react-native/libraries/batchedbridge/nativemodules.d.ts","../../../node_modules/react-native/libraries/components/accessibilityinfo/accessibilityinfo.d.ts","../../../node_modules/react-native/libraries/components/activityindicator/activityindicator.d.ts","../../../node_modules/react-native/libraries/components/clipboard/clipboard.d.ts","../../../node_modules/react-native/libraries/components/datepicker/datepickerios.d.ts","../../../node_modules/react-native/libraries/components/drawerandroid/drawerlayoutandroid.d.ts","../../../node_modules/react-native/libraries/eventemitter/nativeeventemitter.d.ts","../../../node_modules/react-native/libraries/components/keyboard/keyboard.d.ts","../../../node_modules/react-native/types/private/timermixin.d.ts","../../../node_modules/react-native/libraries/components/keyboard/keyboardavoidingview.d.ts","../../../node_modules/react-native/libraries/components/pressable/pressable.d.ts","../../../node_modules/react-native/libraries/components/progressbarandroid/progressbarandroid.d.ts","../../../node_modules/react-native/libraries/components/progressviewios/progressviewios.d.ts","../../../node_modules/react-native/libraries/components/safeareaview/safeareaview.d.ts","../../../node_modules/react-native/libraries/components/slider/slider.d.ts","../../../node_modules/react-native/libraries/components/statusbar/statusbar.d.ts","../../../node_modules/react-native/libraries/components/switch/switch.d.ts","../../../node_modules/react-native/libraries/components/textinput/inputaccessoryview.d.ts","../../../node_modules/react-native/libraries/components/textinput/textinput.d.ts","../../../node_modules/react-native/libraries/components/toastandroid/toastandroid.d.ts","../../../node_modules/react-native/libraries/components/touchable/touchablewithoutfeedback.d.ts","../../../node_modules/react-native/libraries/components/touchable/touchablehighlight.d.ts","../../../node_modules/react-native/libraries/components/touchable/touchableopacity.d.ts","../../../node_modules/react-native/libraries/components/touchable/touchablenativefeedback.d.ts","../../../node_modules/react-native/libraries/components/button.d.ts","../../../node_modules/react-native/libraries/interaction/interactionmanager.d.ts","../../../node_modules/react-native/libraries/interaction/panresponder.d.ts","../../../node_modules/react-native/libraries/layoutanimation/layoutanimation.d.ts","../../../node_modules/react-native/libraries/linking/linking.d.ts","../../../node_modules/react-native/libraries/logbox/logbox.d.ts","../../../node_modules/react-native/libraries/modal/modal.d.ts","../../../node_modules/react-native/libraries/performance/systrace.d.ts","../../../node_modules/react-native/libraries/permissionsandroid/permissionsandroid.d.ts","../../../node_modules/react-native/libraries/pushnotificationios/pushnotificationios.d.ts","../../../node_modules/react-native/libraries/utilities/createperformancelogger.d.ts","../../../node_modules/react-native/libraries/reactnative/appregistry.d.ts","../../../node_modules/react-native/libraries/reactnative/i18nmanager.d.ts","../../../node_modules/react-native/libraries/reactnative/roottag.d.ts","../../../node_modules/react-native/libraries/reactnative/uimanager.d.ts","../../../node_modules/react-native/libraries/reactnative/requirenativecomponent.d.ts","../../../node_modules/react-native/libraries/settings/settings.d.ts","../../../node_modules/react-native/libraries/share/share.d.ts","../../../node_modules/react-native/libraries/stylesheet/platformcolorvaluetypesios.d.ts","../../../node_modules/react-native/libraries/stylesheet/platformcolorvaluetypes.d.ts","../../../node_modules/react-native/libraries/turbomodule/rctexport.d.ts","../../../node_modules/react-native/libraries/turbomodule/turbomoduleregistry.d.ts","../../../node_modules/react-native/libraries/utilities/appearance.d.ts","../../../node_modules/react-native/libraries/utilities/backhandler.d.ts","../../../node_modules/react-native/libraries/utilities/devsettings.d.ts","../../../node_modules/react-native/libraries/utilities/dimensions.d.ts","../../../node_modules/react-native/libraries/utilities/pixelratio.d.ts","../../../node_modules/react-native/libraries/utilities/platform.d.ts","../../../node_modules/react-native/libraries/vibration/vibration.d.ts","../../../node_modules/react-native/libraries/yellowbox/yellowboxdeprecated.d.ts","../../../node_modules/react-native/libraries/vendor/core/errorutils.d.ts","../../../node_modules/react-native/types/public/deprecatedpropertiesalias.d.ts","../../../node_modules/react-native/types/index.d.ts","../src/interfaces/alertaction.ts","../src/interfaces/barbutton.ts","../src/templates/template.ts","../src/templates/actionsheettemplate.ts","../src/templates/alerttemplate.ts","../src/templates/contacttemplate.ts","../src/interfaces/gridbutton.ts","../src/templates/gridtemplate.ts","../src/templates/informationtemplate.ts","../src/interfaces/action.ts","../src/interfaces/listitem.ts","../src/interfaces/listitemupdate.ts","../src/interfaces/listsection.ts","../src/templates/listtemplate.ts","../src/interfaces/carcolor.ts","../src/interfaces/navigationstep.ts","../src/interfaces/navigationinfo.ts","../src/interfaces/travelestimates.ts","../src/templates/android/androidnavigationbasetemplate.ts","../src/templates/android/navigationtemplate.ts","../src/interfaces/place.ts","../src/templates/android/placelistmaptemplate.ts","../src/interfaces/header.ts","../src/templates/android/placelistnavigationtemplate.ts","../src/templates/android/routepreviewnavigationtemplate.ts","../src/interfaces/mapbutton.ts","../src/interfaces/navigationalert.ts","../src/interfaces/textconfiguration.ts","../src/interfaces/timeremainingcolor.ts","../src/interfaces/maneuver.ts","../src/interfaces/pausereason.ts","../src/navigation/trip.ts","../src/navigation/navigationsession.ts","../src/interfaces/pane.ts","../src/templates/maptemplate.ts","../src/templates/pointofinteresttemplate.ts","../src/templates/searchtemplate.ts","../src/templates/tabbartemplate.ts","../src/interfaces/voicecontrolstate.ts","../src/templates/voicecontroltemplate.ts","../src/templates/nowplayingtemplate.ts","../src/carplay.ts","../src/templates/android/messagetemplate.ts","../src/templates/android/panetemplate.ts","../src/index.ts","../../../node_modules/@types/react-native/globals.d.ts","../../../node_modules/@types/react-native/legacy-properties.d.ts","../../../node_modules/@types/react-native/batchedbridge.d.ts","../../../node_modules/@types/react-native/devtools.d.ts","../../../node_modules/@types/react-native/launchscreen.d.ts","../../../node_modules/@types/react-native/index.d.ts","../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7",{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"3a909e8789a4f8b5377ef3fb8dc10d0c0a090c03f2e40aab599534727457475a","affectsGlobalScope":true},"a146ba1440b2fa4f162d6716a5e15e6eed33e7f82b2726875977612a02538ff5","761efedfd663d03ab4ede2ca6f843dad41ca6a4614d3892b2fda2ccf4f591412",{"version":"27f1ac017b77b5cf91897b812c2630f4d0e5f1170cdd1cb367766130ab4ab232","affectsGlobalScope":true},"bc4db28f3510994e45bbabba1ee33e9a0d27dab33d4c8a5844cee8c85438a058","f387a979388291b2688ba0f604e3ae78874f5f777616b448d34109762a4f05a9","ae25110457c6a745ae4dc9cdf60cc09c7fff8bce7d42d0b8c3b32f6a1d4b59e9","bf69190dc5b562641c26bb52f8f1ccb13c317b049dcc487e95fde7e7ca3ff29f","9054417b5760061bc5fe31f9eee5dc9bf018339b0617d3c65dd1673c8e3c0f25","a306da1c4fba2f9c62b7335dc0c00faff217d7e13e70c72b10d7b3e18986a0de","1275deefb309765db2f89e7f21e6544dc03204f16baa50ed7db3c4a7080104f3",{"version":"549df62b64a71004aee17685b445a8289013daf96246ce4d9b087d13d7a27a61","affectsGlobalScope":true},"4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288","84af1dcde6fe6d8f4b235efd6b95630bb383b0c8a34e0a80e4aa4813111302b6","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"d6070956a76cd4119de9baf0d47ec6f46cab9036bf3bef2fd5dfc74178808be0","affectsGlobalScope":true},"232f660363b3b189f7be7822ed71e907195d1a85bc8d55d2b7ce3f09b2136938","e745388cfad9efb4e5a9a15a2c6b66d54094dd82f8d0c2551064e216f7b51526","cd2156bc8e4d54d52a2817d1b6f4629a5dd3173b1d8bb0fc893ee678d6a78ecd","53390c21d095fb54e6c0b8351cbf7f4008f096ade9717bc5ee75e340bc3dfa30","152a853e9b80378a474e4165311029f68a29702e708322965c94d80d9cda219f","06f4467578b598b79cccbb873d23421991158b93b90a02cb4e5e37ba1edecd61","0ca2acb6cc3d5f97a444a347d4a46803fc1937faa42b107d085df8c08d4a2fa9","0e74bf35f0e23a86e3c95f56d22980fe2d45b6091a364a54eef86bb9ffd742e1","5c7b557014f6dbf2f6382e97f491f3e2d9083564813f6856770359d105c63f3f","3dfa3a6f2a62259b56fa7bcebfbacf886848dfa037298be5bed07c7a0381ee4f","be16be6d333d0aed95e7dcf39fb3456fc0b76b52e91a1a4a48ecafa30328bad6","1882680f8c88c5648d603408dd1943857ca831a815e33d3126be8368f7a69252","cae0fb826d8a88749189b8a924dfcb5d3ad629e3bc5ec934195fbd83fa48b068","5de4d894bc3fd9c137db39a33996131925779543bab3a27ac3886e03c606968b","bfb6a6a305fc8d09e4a33d2e94f08701ba8bd47d6293a13dc16f5af1d8e61993","b63efe8128031ec92a1422a4e712a53f489a40f141a4b843462e337be914444e","38e5d6c13fd5047e294159c66ef26823568b9a7da801f03b4056ceb973e9bf09","0e74f97b091f176ac8be1340f10e9cbe071f904d5061516303416d6930ed4d23","ab816865ecf7babb6dca61a25f9aadf2bf77c6eb2f929ec28acffa0c0299a513","c94f70562ae60797cce564c3bebbaaf1752c327d5063d6ac152aa5ca1616c267","2aeb5fcdfc884b16015617d263fd8d1a8513f7efe23880be4e5f0bdb3794b37c","f1d57da129af8300d4373d448c589dd8572f826bbbd0845119f9a71308cd71ed","30ccac3e874e8891e94f6588386b2589f56a2026b06705cba1ec85c34169ddd7","5fe94f3f6411a0f6293f16fdc8e02ee61138941847ce91d6f6800c97fac22fcd","70a81ce56384d2fd7660ffb91e7671e9e36ca1ca11b759fa6d95e257d18339e1","b1ae4f67b4b776b38780d87bd7ac5c54935e12d6b5df4f83b9d6bbb9f90ea4bc","4f4f2203a8c01310bfb7992aecaa90356590021421ed43087231abacbd89001f","8205e62a7310ac0513747f6d84175400680cff372559bc5fbe2df707194a295d","568daa32be2b7c7c5dc37cf2845d101c7c6404625225bea722803fd605486d09","77cd0147792acfb81e0ab60a448618478cb6781d6d3b49ca4396d3b3b2711185","8387fa3287992c71702756fe6ecea68e2f8f2c5aa434493e3afe4817dd4a4787","ff6df132d8a2c8982ca3b4392da44cc9277fda7720075e8dee2625b1687f12d7","269c5d54104033b70331343bd931c9933852a882391ed6bd98c3d8b7d6465d22","a56b8577aaf471d9e60582065a8193269310e8cae48c1ce4111ed03216f5f715","486ae83cd51b813095f6716f06cc9b2cf480ad1d6c7f8ec59674d6c858cd2407","05851a4f8516e4713d35f0ab7c84307d989205bdd2bba70c9564b611c1c52cee","5dd0ff735b3f2e642c3f16bcfb3dc4ecebb679a70e43cfb19ab5fd84d8faaeed","47ab676a72d9b85904ff3609efb10ced01634c517f9f28d292ac236bb600c233","d1d78d1ef0f21ac77cdc436d2a4d56592453a8a2e51af2040ec9a69a5d35e4de","bec7970d556a0dfc9461c6b17d8fc799fa2a82b051214556ee6402562f6e91e7","bc55b91274e43f88030c9cfe2c4217fae57894c3c302173ab6e9743c29484e3d","8bb22f70bfd7bf186631fa565c9202ee6a1009ffb961197b7d092b5a1e1d56b1","48faae4268b209ef790fae0fb93aa61ab6b242fbdc28c2aa8f4ce2115df356ec","fde082862c6de03f16b927334711f7cdc8560073bd74da1f339ac9b2506e98ad","64ce8e260a1362d4cadd6c753581a912a9869d4a53ec6e733dc61018f9250f5d","63c0400a40ddb19711a4388652df60e084dbb9071311bac59b497d5bac8caf58","33eedfef5ad506cfa5f650a66001e7df48bc9676ab5177826d599adb9600a723","4c4cb14e734799f98f97d5a0670cb7943bd2b4bd61413e33641f448e35e9f242","bdb2b70c74908c92ec41d8dd8375a195cb3bb07523e4de642b2b2dfbde249ca6","7b329f4137a552073f504022acbf8cd90d49cc5e5529791bef508f76ff774854","d9725ef7f60a791668f7fb808eb90b1789feaaef989a686fefc0f7546a51dcdc","df55b9be6ba19a6f77487e09dc7a94d7c9bf66094d35ea168dbd4bac42c46b8f","595125f3e088b883d104622ef10e6b7d5875ff6976bbe4d7dca090a3e2dca513","8ebb6f0603bf481e893311c49e4d2e2061413c51b9ba5898cd9b0a01f5ef19c8","e0d7eed4ba363df3faadb8e617f95f9fc8adfbb00b87db7ade4a1098d6cf1e90","38faab59a79924ce5eb4f2f3e7e7db91e74d425b4183f908cc014be213f0d971","de115595321ce012c456f512a799679bfc874f0ac0a4928a8429557bb25086aa","f918202c27cded239b116821cca3c09eb3ba782677a3b57efe92208e2568033f","0524cab11ba9048d151d93cc666d3908fda329eec6b1642e9a936093e6d79f28","5d8a9850db1e1d83e9516aca3d5e2966900685dcc4abb4834f967f36a0c210d1","a650fcecebb93773e8bf199509c294c752fb206d49150ccd3d2d4dc94e269669","56503e377bc1344f155e4e3115a772cb4e59350c0b8131e3e1fb2750ac491608","6b579287217ee1320ee1c6cfec5f6730f3a1f91daab000f7131558ee531b2bf8","171cfc614e7a01c3a68b432a58c1149634a3dd79c87e0b23cec67439a26b91b7","036137a0728f651bc4e8d140273401eb70cf6f70fc4a8e14dad784f7a6edead4","b15d6238a86bc0fc2368da429249b96c260debc0cec3eb7b5f838ad32587c129","02a9d48253ab8a2ba780e5a0c79b5ddb27df30cbc65d501c4c8403e69a57e26d","4b10e2fe52cb61035e58df3f1fdd926dd0fe9cf1a2302f92916da324332fb4e0","d1092ae8d6017f359f4758115f588e089848cc8fb359f7ba045b1a1cf3668a49","ddae9195b0da7b25a585ef43365f4dc5204a746b155fbee71e6ee1a9193fb69f","32dbced998ce74c5e76ce87044d0b4071857576dde36b0c6ed1d5957ce9cf5b5","e106f888afa42666669fe0d0e155c46935de2e10935804e8442696d9a7c13d67","341ffa358628577f490f128f3880c01d50ef31412d1be012bb1cd959b0a383ea","ecc1b8878c8033bde0204b85e26fe1af6847805427759e5723882c848a11e134","cfc9c32553ad3b5be38342bc8731397438a93531118e1a226a8c79ad255b4f0c","3e7534c46dec077a25018ed6172714bee4e675c9bb22904266ff476123b2c217","a3d3931cea9fc910da96edd3d18e340f105eb971e0486bfe522707d364c55c7c","a090a8a3b0ef2cceeb089acf4df95df72e7d934215896afe264ff6f734d66d15","a0259c6054e3ed2c5fb705b6638e384446cbcdf7fd2072c659b43bd56e214b9a","005319c82222e57934c7b211013eb6931829e46b2a61c5d9a1c3c25f8dc3ea90","6ea5259ec84a1a0168df3975692dfeaa12d86fb34ed6bfe18418e9001c37d0b1",{"version":"50a5ad94e458ba0d2ea714309ddcc5bec40183572b71469515ead4bca778a8d2","affectsGlobalScope":true},"289db8b776d693056927f900974fbaf20aa75cb8209b837636f0bc263640a220","efc19ef55c9abc834845ffcd10e60a01128832330b9cf564f640ec0472678c16","7d41e00ee31e81e7d51d7854133ff6a129e42f9163e5f77d7091246cc944c8e5","d8d135139a67914ab978d1c619e1b135d16669c6ca3e044e4106ae0ff398c61a","f9d92ed9953e0a52bef97c42d056232b50db0dc62091a49bf41eb98bcefffe79","96570bd61eb04fa42d243e2ab338fde5293655a3ca4fa8c1d141f7b2642b0762","e1fbcbde40f67b5e0c0ed7874314ec59bcd11699f95f69200bb9799a17bbf0ea","c21005abfcb95a5204a33c7d2ac30ad20a97e2e4103b0dc535608ff10ce63daf","eb34f33201f4e7a0ce03ad482750d54d73fa9b7103afd15f76bb06e768de9bbb","bfd509f7124a7bc03ddb74ab6b44d3bcb3293f9a95eae6a8f46965bb3e9a1d39","fdcba0c0f5b74582c4f622805c3daa6814704f19625b213ddc00bb5f94b7b5c7","82725312db9fe44f4f64f75e643047a8f24e7918f156f6a73ee68c60d3fc7a9b","92c8b9dc386ae2d2489c2ac70677d22fab113d5f554147d5e92ab0839def1b9c","b2b3d17fbe6121e5c6b3e72b5fc12d7ab48fd0f60013a34b072aa415ce9eb260","a4848e5086d11db2f14bd1f446b3ba8f6641c10315e3cecb393282a4034bc413","5f40ad344b9a3df838e6e2a0ce47828b9efee595dd5dfa9f69f0680049d6d0cc","4b04cd66c9b2d001680d7d8b4dc6889d75a99e4117bdbbbae630b8d310b78692","25eb454319e4a7843cf19db275e71fb9235ea50bceefdf0c5374e112f0cc2f6a","58cda3e694390101e6bc3b3411c4dfa38f5b4ba2db1b81161c07fe4a6717e42f","9980201e23076e9cf7d6e02207a79d0e8b42c1551b359b8fb30088af14b8e29f","1d432901a777d96c22e0e6076d26e7bd49e7690da46b78803969e556ff793451","691f08157c47e970015630957d221e3d914839e92a8bd25a3d1a54871fe69535","afe6d5d7db8c031bbb54a553d7f2a7ca7cccf51d824d4b60dc50bae29b5d9e7a","57d01a70701878dbd5c0f6d8b389c0dc527a9c6ae5ce2df2369a9aa4b06aaf77","69e59b747ea3b558a1b31b7c1b72b0385f31b8b83eba0e496a0f43cd97a35ef7","c9373989f0b8fc1cbad7720b4ff017642a1018a7b9e69ba614469bcc117776fa","148d15998d2fdf100e946a86c27c5cca233581aa5c0330a2bded4b7ba3a517fc","c0b84a119dbbdb4a79e19ad4bc0950448848b57787b2c771c51ec1f12c44d8ab","c54f957f78ea7137a225777cf8e54d07450eb392fac4a0fda34e46eb9fa8b66b","635cf8cd11c2764136184f12c08bcbb2b35bcb8e58335f9296c5b29c101a7225","3c00dba8c9fde0e91fa1bc883d939f481498308d32391f501aeacb69f800a9e8","94fdb9a62b113e2eee056dda85fe00a8b24ec22bf791cccd4224f4d1545c0957","95df3868d075090426f420a4724b5d6ce48e9a861c4bca669d570dac54156dfc","36744622ae47481598e6015f3ac8e223ed10c87514fd7ac28a97ca81fd029814","80046baf5144598f8b03f18e7b65033018e698ce610c467ad85d28d1568593d8","e63c5c3cdf53cb08484c10ccddb7b2a3c8c09982bafe0b11bc14e9735ca31c70","352252977061a01aeb70fa6507d126deddd4aa1832008c879aeafc176003cbd0","e4b56905fa7a5c260e2fc06d1ab5f01b0f2495a5e2950ca6a43b9a16ba912607","29b4eaaa3b0057f0741342275cb1a27f6eea4ffd802ffadd1db5835a896f9e78","eb48bb779326c2b2c1d6fb9b9cf89b0cee2c13e0845b95d7755cb842797b55db","1dd9d5f280ab2e4c4623a4c9e75c7dd3c6cf3b9ba93bd21c67906d4633a2cb6d","b7db562e8941bce4c10e64d48768bc8916962f7b4765103a34d68dc26e1de420","5d30592dc2e44684638cc4d68c55c6e2663c403178130b702140e814915ca9c6","fd32fa82c9044f86bf0d41db6432f8398127f226894bfbc12bc2593aabfbf993","882097ecd9871d0b8eacc1ecb4d8c013c47a2c056e0df8c9d512630c01cbf6d0",{"version":"4452f559618410bd9950973795fa657dbf3411cdc55c4c3460c5bab189903863","affectsGlobalScope":true},"9e9df0ee50fc117b15fd7815162a41c46e95996b513e4107b433d3e37dbe2ce8",{"version":"efd32b1ab5e3897f64ed3d0f236657c3c9c7bcc669449e608ebee1ad9dbe396a","affectsGlobalScope":true},"7fb3279c4bf36d993b1e8b339cded5908f7b2ec1b6e0ac2feaa842b5b6b143f1","234b97ac9af46707f2315ff395a9b340d37b7dbc8290d91f5d6bd97189d220f3",{"version":"9dd033026e3a2ce77eed90aef10923bc35dba84e968395b81e19fe7b0f5a324a","affectsGlobalScope":true},"6c1e688f95fcaf53b1e41c0fdadf2c1cfc96fa924eaf7f9fdb60f96deb0a4986","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","db25694be959314fd1e868d72e567746db1db9e2001fae545d12d2a8c1bba1b8","43883cf3635bb1846cbdc6c363787b76227677388c74f7313e3f0edb380840fa","2d47012580f859dae201d2eef898a416bdae719dffc087dfd06aefe3de2f9c8d","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","2cec1a31729b9b01e9294c33fc9425d336eff067282809761ad2e74425d6d2a5",{"version":"5bc4bb5796ce660d9869477983aac87734e19fecd1ad60fb0b13ffe1f1a450ed","affectsGlobalScope":true}],"root":[[145,189]],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"jsx":3,"module":1,"outDir":"./","skipLibCheck":true,"strict":true,"target":99},"fileIdsList":[[47,49,51,192,193,194],[47,49,51,192,193,194,198],[47,49,51,192,193,194,200,203],[47,49,51,193,194],[47,49,51,62,190,191,192,193,194],[47,49,51,192,193],[47,49,51,144,191,192,193,194],[47,49,51,58,59,60,61,192,193,194],[47,49,51,192,193,194,196,202],[47,49,51,192,193,194,200],[47,49,51,192,193,194,197,201],[47,49,51,192,193,194,199],[47,49,51,54,55,192,193,194],[47,49,51,54,62,67,73,74,76,78,79,80,192,193,194],[47,49,51,81,192,193,194],[47,49,51,86,192,193,194],[47,49,51,62,66,84,192,193,194],[47,49,51,53,54,62,63,66,67,71,192,193,194],[47,49,51,54,62,110,111,192,193,194],[47,49,51,62,63,66,71,192,193,194],[47,49,51,54,62,63,66,67,71,192,193,194],[47,49,51,84,94,192,193,194],[47,49,51,53,54,62,63,71,96,192,193,194],[47,49,51,53,54,62,64,67,70,71,74,192,193,194],[47,49,51,54,62,63,66,71,192,193,194],[47,49,51,54,62,63,66,71,75,192,193,194],[47,49,51,53,54,62,63,64,67,69,71,72,192,193,194],[47,49,51,53,54,62,63,66,71,75,192,193,194],[47,49,51,54,62,192,193,194],[47,49,51,53,54,62,192,193,194],[47,49,51,53,54,62,63,66,67,70,71,84,96,192,193,194],[47,49,51,62,64,67,192,193,194],[47,49,51,53,54,62,63,66,69,96,108,192,193,194],[47,49,51,54,62,63,69,108,110,192,193,194],[47,49,51,62,63,66,69,71,96,108,192,193,194],[47,49,51,53,54,62,63,64,67,69,70,96,192,193,194],[47,49,51,67,192,193,194],[47,49,51,53,54,62,64,67,68,69,70,192,193,194],[47,49,51,84,192,193,194],[47,49,51,85,192,193,194],[47,49,51,52,53,54,62,63,64,66,67,70,75,192,193,194],[47,49,51,67,68,192,193,194],[47,49,51,53,54,62,73,74,77,192,193,194],[47,49,51,53,54,62,65,73,77,192,193,194],[47,49,51,53,54,62,73,74,144,191,192,193,194],[47,49,51,62,67,71,192,193,194],[47,49,51,62,122,192,193,194],[47,49,51,62,192,193,194],[47,49,51,66,192,193,194],[47,49,51,62,66,192,193,194],[47,49,51,54,192,193,194],[47,49,51,53,192,193,194],[47,49,51,52,54,192,193,194],[47,49,51,53,54,62,63,66,67,70,192,193,194],[47,49,51,132,192,193,194],[47,49,51,62,65,66,192,193,194],[47,49,51,94,192,193,194],[47,48,49,50,51,52,53,54,55,56,57,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,192,193,194],[49,51,192,193,194],[47,49,192,193,194],[47,49,51,144,148,149,150,152,153,154,158,162,164,166,168,169,172,173,174,175,176,179,180,181,182,184,185,191,192,193,194],[47,49,51,148,149,150,152,153,158,164,166,168,169,176,177,179,180,181,182,184,185,186,187,188,192,193,194],[47,49,51,154,192,193,194],[47,49,51,144,154,191,192,193,194],[47,49,51,155,192,193,194],[47,49,51,144,162,191,192,193,194],[47,49,51,144,160,191,192,193,194],[47,49,51,144,154,155,191,192,193,194],[47,49,51,159,192,193,194],[47,49,51,144,162,174,175,176,179,186,191,192,193,194],[47,49,51,186,192,193,194],[47,49,51,145,147,192,193,194],[47,49,51,144,147,186,191,192,193,194],[47,49,51,144,147,154,191,192,193,194],[47,49,51,154,159,161,162,163,192,193,194],[47,49,51,147,154,178,192,193,194],[47,49,51,154,155,163,165,192,193,194],[47,49,51,154,155,163,167,192,193,194],[47,49,51,144,147,191,192,193,194],[47,49,51,147,151,192,193,194],[47,49,51,147,186,192,193,194],[47,49,51,144,147,154,155,156,157,186,191,192,193,194],[47,49,51,144,147,154,155,162,167,170,171,172,173,176,177,178,186,191,192,193,194],[47,49,51,147,192,193,194],[47,49,51,144,147,155,186,191,192,193,194],[47,49,51,147,152,153,158,180,186,192,193,194],[47,49,51,144,146,186,191,192,193,194],[47,49,51,147,183,186,192,193,194]],"referencedMap":[[196,1],[199,2],[198,1],[204,3],[60,1],[192,4],[193,1],[190,1],[195,5],[194,6],[191,7],[58,1],[62,8],[61,1],[197,1],[59,1],[203,9],[201,10],[202,11],[200,12],[56,13],[57,1],[81,14],[82,1],[83,15],[87,16],[88,1],[89,17],[90,18],[112,19],[91,1],[92,20],[93,21],[95,22],[97,23],[98,24],[99,25],[100,26],[72,25],[101,20],[73,27],[102,28],[103,29],[104,18],[105,30],[106,31],[107,1],[69,32],[109,33],[111,34],[110,35],[108,36],[74,20],[70,37],[71,38],[94,39],[85,39],[86,40],[76,41],[52,1],[75,1],[113,39],[114,42],[115,1],[116,22],[78,43],[79,44],[77,45],[117,1],[118,46],[119,1],[120,1],[121,1],[123,47],[124,1],[65,48],[127,49],[125,48],[126,50],[128,1],[129,51],[131,51],[130,51],[55,51],[54,52],[53,53],[80,54],[132,1],[133,55],[67,56],[134,16],[135,16],[122,1],[136,57],[137,39],[138,1],[139,1],[142,1],[84,1],[140,1],[141,48],[144,58],[47,59],[48,7],[49,1],[50,1],[51,60],[96,1],[63,1],[143,7],[64,1],[68,37],[66,48],[45,1],[46,1],[8,1],[7,1],[2,1],[9,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[3,1],[4,1],[20,1],[17,1],[18,1],[19,1],[21,1],[22,1],[23,1],[5,1],[24,1],[25,1],[26,1],[27,1],[6,1],[31,1],[28,1],[29,1],[30,1],[32,1],[33,1],[37,1],[38,1],[34,1],[35,1],[36,1],[39,1],[40,1],[41,1],[42,1],[43,1],[44,1],[1,1],[186,61],[189,62],[154,7],[145,1],[146,7],[159,1],[151,7],[167,63],[155,64],[156,65],[157,65],[174,66],[170,7],[171,7],[161,67],[160,7],[178,68],[175,1],[165,7],[172,1],[173,1],[162,69],[183,7],[177,70],[176,71],[148,72],[149,72],[163,73],[187,74],[164,75],[188,76],[166,77],[168,78],[169,78],[150,79],[152,80],[153,81],[158,82],[179,83],[185,79],[180,84],[181,85],[182,86],[147,87],[184,88]],"exportedModulesMap":[[196,1],[199,2],[198,1],[204,3],[60,1],[192,4],[193,1],[190,1],[195,5],[194,6],[191,7],[58,1],[62,8],[61,1],[197,1],[59,1],[203,9],[201,10],[202,11],[200,12],[56,13],[57,1],[81,14],[82,1],[83,15],[87,16],[88,1],[89,17],[90,18],[112,19],[91,1],[92,20],[93,21],[95,22],[97,23],[98,24],[99,25],[100,26],[72,25],[101,20],[73,27],[102,28],[103,29],[104,18],[105,30],[106,31],[107,1],[69,32],[109,33],[111,34],[110,35],[108,36],[74,20],[70,37],[71,38],[94,39],[85,39],[86,40],[76,41],[52,1],[75,1],[113,39],[114,42],[115,1],[116,22],[78,43],[79,44],[77,45],[117,1],[118,46],[119,1],[120,1],[121,1],[123,47],[124,1],[65,48],[127,49],[125,48],[126,50],[128,1],[129,51],[131,51],[130,51],[55,51],[54,52],[53,53],[80,54],[132,1],[133,55],[67,56],[134,16],[135,16],[122,1],[136,57],[137,39],[138,1],[139,1],[142,1],[84,1],[140,1],[141,48],[144,58],[47,59],[48,7],[49,1],[50,1],[51,60],[96,1],[63,1],[143,7],[64,1],[68,37],[66,48],[45,1],[46,1],[8,1],[7,1],[2,1],[9,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[3,1],[4,1],[20,1],[17,1],[18,1],[19,1],[21,1],[22,1],[23,1],[5,1],[24,1],[25,1],[26,1],[27,1],[6,1],[31,1],[28,1],[29,1],[30,1],[32,1],[33,1],[37,1],[38,1],[34,1],[35,1],[36,1],[39,1],[40,1],[41,1],[42,1],[43,1],[44,1],[1,1],[186,61],[189,62],[154,7],[145,1],[146,7],[159,1],[151,7],[167,63],[155,64],[156,65],[157,65],[174,66],[170,7],[171,7],[161,67],[160,7],[178,68],[175,1],[165,7],[172,1],[173,1],[162,69],[183,7],[177,70],[176,71],[148,72],[149,72],[163,73],[187,74],[164,75],[188,76],[166,77],[168,78],[169,78],[150,79],[152,80],[153,81],[158,82],[179,83],[185,79],[180,84],[181,85],[182,86],[147,87],[184,88]],"semanticDiagnosticsPerFile":[196,199,198,204,60,192,193,190,195,194,191,58,62,61,197,59,203,201,202,200,56,57,81,82,83,87,88,89,90,112,91,92,93,95,97,98,99,100,72,101,73,102,103,104,105,106,107,69,109,111,110,108,74,70,71,94,85,86,76,52,75,113,114,115,116,78,79,77,117,118,119,120,121,123,124,65,127,125,126,128,129,131,130,55,54,53,80,132,133,67,134,135,122,136,137,138,139,142,84,140,141,144,47,48,49,50,51,96,63,143,64,68,66,45,46,8,7,2,9,10,11,12,13,14,15,16,3,4,20,17,18,19,21,22,23,5,24,25,26,27,6,31,28,29,30,32,33,37,38,34,35,36,39,40,41,42,43,44,1,186,189,154,145,146,159,151,167,155,156,157,174,170,171,161,160,178,175,165,172,173,162,183,177,176,148,149,163,187,164,188,166,168,169,150,152,153,158,179,185,180,181,182,147,184],"affectedFilesPendingEmit":[186,189,154,145,146,159,151,167,155,156,157,174,170,171,161,160,178,175,165,172,173,162,183,177,176,148,149,163,187,164,188,166,168,169,150,152,153,158,179,185,180,181,182,147,184],"emitSignatures":[145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189]},"version":"5.0.4"}
|
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@santoshpk/react-native-carplay",
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "React Native Android Auto / CarPlay — fork of react-native-carplay with ReactHost migration, POI enhancements, and modern RN compatibility",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"types": "lib/index.d.ts",
|
|
7
|
+
"react-native": "src/index.ts",
|
|
8
|
+
"source": "src/index.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"src",
|
|
11
|
+
"lib",
|
|
12
|
+
"ios",
|
|
13
|
+
"android",
|
|
14
|
+
"react-native-carplay.podspec",
|
|
15
|
+
"!android/.gradle",
|
|
16
|
+
"!android/build"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsc -p tsconfig.build.json",
|
|
20
|
+
"prepare": "npm run build"
|
|
21
|
+
},
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "https://github.com/santoshP0/rn-android-carplay.git"
|
|
25
|
+
},
|
|
26
|
+
"keywords": [
|
|
27
|
+
"react-native",
|
|
28
|
+
"android",
|
|
29
|
+
"android-auto",
|
|
30
|
+
"carplay",
|
|
31
|
+
"car",
|
|
32
|
+
"navigation",
|
|
33
|
+
"poi"
|
|
34
|
+
],
|
|
35
|
+
"author": "Santosh Kumar",
|
|
36
|
+
"license": "MIT",
|
|
37
|
+
"bugs": {
|
|
38
|
+
"url": "https://github.com/santoshP0/rn-android-carplay/issues"
|
|
39
|
+
},
|
|
40
|
+
"homepage": "https://github.com/santoshP0/rn-android-carplay#readme",
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"react": ">=18.0.0",
|
|
43
|
+
"react-native": ">=0.71.0"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"typescript": "^5.0.0",
|
|
47
|
+
"@types/react": "^19.0.0"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
require 'json'
|
|
2
|
+
|
|
3
|
+
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
|
4
|
+
|
|
5
|
+
Pod::Spec.new do |s|
|
|
6
|
+
s.name = package['name']
|
|
7
|
+
s.version = package['version']
|
|
8
|
+
s.summary = package['description']
|
|
9
|
+
|
|
10
|
+
s.homepage = package['repository']['url']
|
|
11
|
+
|
|
12
|
+
s.license = package['license']
|
|
13
|
+
s.authors = package['author']
|
|
14
|
+
s.ios.deployment_target = '12.0'
|
|
15
|
+
|
|
16
|
+
s.source = { :git => "https://github.com/birkir/react-native-carplay.git" }
|
|
17
|
+
|
|
18
|
+
s.source_files = "ios/*.{h,m}"
|
|
19
|
+
|
|
20
|
+
s.dependency 'React'
|
|
21
|
+
end
|