|
39 | 39 | <category android:name="android.intent.category.LAUNCHER" /> |
40 | 40 | </intent-filter> |
41 | 41 | </activity> |
| 42 | + |
| 43 | + <!-- |
| 44 | + All activities in this sample are exported. This is for demonstration |
| 45 | + purposes, to make it easy to launch each sample activity directly. |
| 46 | +
|
| 47 | + In a real-world application, you should carefully consider which activities |
| 48 | + to export. In most cases, only the main launcher activity should be exported. |
| 49 | + Exporting an activity means that any other app on the device can launch it. |
| 50 | + --> |
| 51 | + |
42 | 52 | <activity |
43 | 53 | android:name=".BasicMapActivity" |
44 | | - android:exported="false" /> |
| 54 | + android:exported="true" /> |
45 | 55 | <activity |
46 | 56 | android:name=".markerexamples.AdvancedMarkersActivity" |
47 | | - android:exported="false"/> |
| 57 | + android:exported="true"/> |
48 | 58 | <activity |
49 | 59 | android:name=".MapInColumnActivity" |
50 | | - android:exported="false"/> |
| 60 | + android:exported="true"/> |
51 | 61 | <activity |
52 | 62 | android:name=".MapsInLazyColumnActivity" |
53 | | - android:exported="false"/> |
| 63 | + android:exported="true"/> |
54 | 64 | <activity |
55 | 65 | android:name=".markerexamples.MarkerClusteringActivity" |
56 | | - android:exported="false"/> |
| 66 | + android:exported="true"/> |
57 | 67 | <activity |
58 | 68 | android:name=".LocationTrackingActivity" |
59 | | - android:exported="false"/> |
| 69 | + android:exported="true"/> |
60 | 70 | <activity |
61 | 71 | android:name=".ScaleBarActivity" |
62 | | - android:exported="false"/> |
| 72 | + android:exported="true"/> |
63 | 73 | <activity |
64 | 74 | android:name=".StreetViewActivity" |
65 | | - android:exported="false"/> |
| 75 | + android:exported="true"/> |
66 | 76 | <activity |
67 | 77 | android:name=".CustomControlsActivity" |
68 | | - android:exported="false"/> |
| 78 | + android:exported="true"/> |
69 | 79 | <activity |
70 | 80 | android:name=".AccessibilityActivity" |
71 | | - android:exported="false"/> |
| 81 | + android:exported="true"/> |
72 | 82 | <activity |
73 | 83 | android:name=".RecompositionActivity" |
74 | | - android:exported="false"/> |
| 84 | + android:exported="true"/> |
75 | 85 | <activity |
76 | 86 | android:name=".FragmentDemoActivity" |
77 | | - android:exported="false"/> |
| 87 | + android:exported="true"/> |
78 | 88 | <activity |
79 | 89 | android:name=".markerexamples.markerdragevents.MarkerDragEventsActivity" |
80 | | - android:exported="false"/> |
| 90 | + android:exported="true"/> |
81 | 91 | <activity |
82 | 92 | android:name=".markerexamples.markerscollection.MarkersCollectionActivity" |
83 | | - android:exported="false"/> |
| 93 | + android:exported="true"/> |
84 | 94 | <activity |
85 | 95 | android:name=".markerexamples.syncingdraggablemarkerwithdatamodel.SyncingDraggableMarkerWithDataModelActivity" |
86 | | - android:exported="false"/> |
| 96 | + android:exported="true"/> |
87 | 97 | <activity |
88 | 98 | android:name=".markerexamples.updatingnodragmarkerwithdatamodel.UpdatingNoDragMarkerWithDataModelActivity" |
89 | | - android:exported="false"/> |
| 99 | + android:exported="true"/> |
90 | 100 | <activity |
91 | 101 | android:name=".markerexamples.draggablemarkerscollectionwithpolygon.DraggableMarkersCollectionWithPolygonActivity" |
92 | | - android:exported="false"/> |
| 102 | + android:exported="true"/> |
93 | 103 |
|
94 | 104 | <!-- Used by createComponentActivity() for unit testing --> |
95 | 105 | <activity android:name="androidx.activity.ComponentActivity" /> |
|
0 commit comments