blob: 59c0a484248899c6d4abfa1c2f13c77bc48a7e31 [file]
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2007 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- Declare the contents of this Android application. The namespace
attribute brings in the Android platform namespace, and the package
supplies a unique name for the application. When writing your
own application, the package name must be changed from "com.example.*"
to come from a domain that you own or have control over. -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<application
android:hardwareAccelerated="true"
android:icon="@drawable/app_sample_code"
android:label="@string/activity_sample_code"
android:supportsRtl="true">
<activity
android:name="Support4Demos"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".app.SendResult"
android:exported="true"
android:theme="@style/ThemeDialogWhenLarge"></activity>
<!-- Fragment Support Samples -->
<activity
android:name=".app.FragmentAlertDialogSupport"
android:exported="true"
android:label="@string/fragment_alert_dialog_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.FragmentArgumentsSupport"
android:exported="true"
android:label="@string/fragment_arguments_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.FragmentCustomAnimationSupport"
android:exported="true"
android:label="@string/fragment_custom_animation_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.FragmentHideShowSupport"
android:exported="true"
android:label="@string/fragment_hide_show_support"
android:windowSoftInputMode="stateUnchanged">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.FragmentContextMenuSupport"
android:exported="true"
android:label="@string/fragment_context_menu_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.FragmentDialogSupport"
android:exported="true"
android:label="@string/fragment_dialog_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.FragmentDialogOrActivitySupport"
android:exported="true"
android:label="@string/fragment_dialog_or_activity_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.FragmentLayoutSupport"
android:exported="true"
android:label="@string/fragment_layout_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.FragmentListArraySupport"
android:exported="true"
android:label="@string/fragment_list_array_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.FragmentLayoutSupport$DetailsActivity"
android:exported="true" />
<activity
android:name=".app.FragmentMenuSupport"
android:exported="true"
android:label="@string/fragment_menu_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.FragmentReceiveResultSupport"
android:exported="true"
android:label="@string/fragment_receive_result_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.FragmentStackSupport"
android:exported="true"
android:label="@string/fragment_stack_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.FragmentPagerSupport"
android:exported="true"
android:label="@string/fragment_pager_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.FragmentStatePagerSupport"
android:exported="true"
android:label="@string/fragment_state_pager_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.FragmentViewModelSupport"
android:exported="true"
android:label="@string/fragment_view_model_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.LoaderCursorSupport"
android:exported="true"
android:label="@string/loader_cursor_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.LoaderCustomSupport"
android:exported="true"
android:label="@string/loader_custom_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.LoaderThrottleSupport"
android:exported="true"
android:label="@string/loader_throttle_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.SimpleJobIntentController"
android:exported="true"
android:label="@string/simple_job_intent_controller">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".content.LocalServiceBroadcaster"
android:exported="true"
android:label="@string/local_service_broadcaster">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".accessibility.AccessibilityManagerSupportActivity"
android:exported="true"
android:label="@string/accessibility_manager_title">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".accessibility.AccessibilityDelegateSupportActivity"
android:exported="true"
android:label="@string/accessibility_delegate_title">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".accessibility.AccessibilityRoleDescriptionSupportActivity"
android:exported="true"
android:label="@string/accessibility_roledescription_title">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.SharingSupport"
android:exported="true"
android:label="@string/sharing_support_title">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".app.SharingReceiverSupport"
android:exported="true"
android:label="@string/sharing_receiver_title">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
</activity>
<activity
android:name=".text.BidiFormatterSupport"
android:exported="true"
android:label="@string/bidiformatter_support_title">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".view.ViewPagerActivity"
android:exported="true"
android:label="@string/view_pager_layout_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".widget.SwipeRefreshLayoutActivityList"
android:exported="true"
android:label="@string/swipe_list"
android:theme="@style/ThemeHoloLight">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".widget.SwipeRefreshLayoutActivityTextView"
android:exported="true"
android:label="@string/swipe_text"
android:theme="@style/ThemeHoloLight">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".widget.SwipeRefreshLayoutActivityNestedScrollView"
android:exported="true"
android:label="@string/swipe_nested_sv"
android:theme="@style/ThemeHoloLight">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".widget.SwipeRefreshLayoutChildAndParentActivity"
android:exported="true"
android:label="@string/swipe_parent_child"
android:theme="@style/ThemeHoloLight">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".widget.ContentLoadingProgressBarActivity"
android:exported="true"
android:label="@string/content_loading_progress_bar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".widget.SlidingPaneLayoutActivity"
android:exported="true"
android:label="@string/sliding_pane_layout_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".widget.ExploreByTouchHelperActivity"
android:exported="true"
android:label="@string/explore_by_touch_helper_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".content.FileProviderExample"
android:exported="true"
android:label="@string/file_provider_example">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".widget.NestedScrollActivity"
android:exported="true"
android:label="@string/nested_scroll">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".widget.NestedScrollActivity3Levels"
android:exported="true"
android:label="@string/nested_scroll_3_levels">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".widget.NestedScrollActivity3LevelsWithCollapsingToolbar"
android:exported="true"
android:theme="@style/Theme.AppCompat.Light"
android:label="@string/nested_scroll_3_levels_collapsing">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".widget.PreferenceScreenWithCollapsingToolbarActivity"
android:exported="true"
android:theme="@style/Theme.AppCompat.Light"
android:label="@string/preference_screen_collapsing">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".graphics.RoundedBitmapDrawableActivity"
android:exported="true"
android:label="Graphics/RoundedBitmapDrawable">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".graphics.DrawableCompatActivity"
android:exported="true"
android:label="Graphics/DrawableCompat">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".view.inputmethod.CommitContentSupport"
android:exported="true"
android:label="@string/commit_content_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv13.SUPPORT13_SAMPLE_CODE" />
</intent-filter>
</activity>
<!-- FileProvider Example -->
<activity
android:name=".media.MediaBrowserSupport"
android:exported="true"
android:label="@string/media_browser_support">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".view.WindowInsetsPlayground"
android:exported="true"
android:label="@string/insets_playground"
android:theme="@android:style/Theme.DeviceDefault.Light.NoActionBar"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<activity
android:name=".view.WindowInsetsControllerPlayground"
android:exported="true"
android:label="@string/insets_controller_playground"
android:theme="@android:style/Theme.DeviceDefault.Light.NoActionBar"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.example.android.supportv4.SUPPORT4_SAMPLE_CODE" />
</intent-filter>
</activity>
<meta-data
android:name="com.google.android.gms.car.notification.SmallIcon"
android:resource="@drawable/ic_notification" />
<meta-data
android:name="com.google.android.gms.car.application.theme"
android:resource="@style/CarTheme" />
<!-- BEGIN_INCLUDE(file_provider_declaration) -->
<provider
android:name=".app.LoaderThrottleSupport$SimpleProvider"
android:authorities="com.example.android.apis.supportv4.app.LoaderThrottle" />
<!-- END_INCLUDE(file_provider_declaration) -->
<provider
android:name=".content.SharingSupportProvider"
android:authorities="com.example.supportv4.content.sharingsupportprovider" />
<!-- MediaBrowserCompat Sample -->
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="com.example.android.supportv4.my_files"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/my_paths" />
</provider>
<receiver
android:name="androidx.media.session.MediaButtonReceiver"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MEDIA_BUTTON" />
</intent-filter>
</receiver>
<!-- (OPTIONAL) use this meta data to indicate which icon should be used in media
notifications (for example, when the music changes and the user is
looking at another app) -->
<service
android:name=".app.SimpleJobIntentService"
android:exported="true"
android:permission="android.permission.BIND_JOB_SERVICE" />
<!--
(OPTIONAL) use this meta data to override the theme from which Android Auto will
look for colors. If you don't set this, Android Auto will look
for color attributes in your application theme.
-->
<service
android:name=".content.LocalServiceBroadcaster$LocalService"
android:exported="true"
android:stopWithTask="true" />
<service
android:name=".media.MediaBrowserServiceSupport"
android:exported="true"
android:process=":service">
<intent-filter>
<action android:name="android.media.browse.MediaBrowserService" />
</intent-filter>
</service>
</application>
<supports-screens
android:compatibleWidthLimitDp="480"
android:requiresSmallestWidthDp="320" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<!-- The smallest screen this app works on is a phone. The app will
scale its UI to larger screens but doesn't make good use of them
so allow the compatibility mode button to be shown (mostly because
this is just convenient for testing). -->
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.INTERNET" />
</manifest>