summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
AgeCommit message (Collapse)Author
2021-04-02Handle modern OPEN_BY_DEFAULT actionWinson
From API feedback, the constant was migrated to the standard format. Settings needs to catch both the modern and legacy format. Bug: 184370492 Test: manual, adb shell am start \ -a "android.settings.APP_OPEN_BY_DEFAULT_SETTINGS" \ -d "package:com.example.app" Change-Id: I138383a65c7b8269696f401e250cc3b6f1cfd1d0
2021-03-29Merge "Add collapsing toolbar to Device Admin Add page" into sc-devTsung-Mao Fang
2021-03-26Merge "Launch StorageDashboardFragment instead of StorageSettings" into sc-devArc Wang
2021-03-25Add collapsing toolbar to Device Admin Add pageTsung-Mao Fang
Test: Built the apk and see new collapsing tool bar on this page Fix: 183689071 Change-Id: I42457fc75f2b725b39e1a1187ffa6d21f5bfe164
2021-03-25Launch StorageDashboardFragment instead of StorageSettingsArc Wang
Since users can use StorageDashboardFragment to choose storages, it's not necessary to choose storages in StorageSettings. Bug: 174964885 Test: make RunSettingsRoboTests ROBOTEST_FILTER=LowStorageSliceTest manual Launch Storage Settings. Change-Id: Ida61052c4294899099914d62da24ca2937a894a0
2021-03-25Merge "Remove android.permission.OPEN_APP_OPEN_BY_DEFAULT_SETTINGS ↵Sunny Shao
enforcement" into sc-dev
2021-03-25Remove android.permission.OPEN_APP_OPEN_BY_DEFAULT_SETTINGS enforcementWinson
With app links v2 changes, 3P apps will need access to this screen to prompt users to approve their domains, so remove the permission enforcement to allow them to do so. Bug: 178648367 Test: presubmit Change-Id: I8819d7c82f2dc771bb0001182bb16a08401732c7
2021-03-24Merge "Update summary based on hibernated apps number" into sc-devZhen Zhang
2021-03-23Update summary based on hibernated apps numberZhen Zhang
Update the summary of "unused apps" based on how many apps are hibernated or auto revoked. Test: HibernatedAppsPreferenceControllerTest Bug: 181172051 Change-Id: I274eb3c0ada3d063937368232f31e52c20287552
2021-03-23Request new Bluetooth runtime permissions.Jeff Sharkey
An upcoming platform change is introducing a new "Nearby devices" runtime permission which contains the new BLUETOOTH_CONNECT and BLUETOOTH_SCAN permissions. We have logic in place to use <split-permission> to translate the older BLUETOOTH and BLUETOOTH_ADMIN permissions into these new runtime permissions, but modern apps will need to pivot to requesting them directly as part of targeting Android S. This change requests both the old and new permissions to avoid breakage while the new permission enforcement is being phased in. Bug: 181813006 Test: atest CtsPermission2TestCases Test: atest CtsPermission3TestCases Test: atest CtsStatsdAtomHostTestCases Change-Id: I0a6ff040520deaa7c7a6fecd83e8608a9bf28c4a
2021-03-19Merge "Modify the value of intent-filter" into sc-devChiachang Wang
2021-03-17Add Media Management Apps activity in Special App AccessIvan Chiang
Add a settings page to control the permission MANAGE_MEDIA in Special App Access. Apps can launch it by ACTION_REQUEST_MANAGE_MEDIA. Test: m -j RunSettingsRoboTests ROBOTEST_FILTER=MediaManagementAppsDetailsTest Test: m -j RunSettingsRoboTests Test: manual Bug: 181112025 Change-Id: Id7587cf179b8c5adbfd6477ca9c2d4a20a9852bb
2021-03-12Merge "Launch channel settings as half sheet" into sc-devTreeHugger Robot
2021-03-12Launch channel settings as half sheetJulia Reynolds
If opening app has requested only a subset of fields Test: manual - launch from an app, filtered and unfiltered, for normal channels and conversations Bug: 177246841 Change-Id: Ifd70478101d1ea1340d2ecc55033fab55e65ca92 Change-Id: I5194b959c82b2cfa7990c84285aaf69464cff3a8
2021-03-11Merge "Fallback to AOSP eSOS settings page if OEM impl fails" into sc-devTreeHugger Robot
2021-03-11Fallback to AOSP eSOS settings page if OEM impl failsFan Zhang
When OEM eSOS implementation fails for any reason (app disabled, misconfigured, etc), Emergency SOS settings should fallack to the default settings page (rather than hiding the setting entirely) Bug: 180959553 Test: robotests Change-Id: I31c08449eff3f01d4c33bf827023f17beade93c2
2021-03-11Declare activities for factory reset pagesMill Chen
When trying to trigger factory reset from Settings app, it's unexpected that Settings will get a fatal ActivityNotFoundException, causing Settings crash. The factory reset pages have changed their launching way from by SubSettingsLauncher to by startActivity directly. These activities haven't been declared in AndroidManifest.xml, which caused this issue. Fixes: 182144129 Test: rebuild and manual 1) Flash the device with aosp build 2) Navigate to Reset options (Settings -> System -> Reset options) 3) Observe and check if Settings gets crashed Change-Id: Ia99f269e237d7c84153d4b903cbca14c33835dc1
2021-03-04Fix long press auto rotate implementation bugAbel Tesfaye
Test: locally with flame Bug: 181741815 Change-Id: I8090471f8c6dbd8e6e4edb4f838779c901c4791b
2021-02-23Adding alarms and reminders activitySuprabh Shukla
Adding a settings screen to control the permission SCHEDULE_EXACT_ALARM. Apps can start this by starting a newly introduced API intent REQUEST_SCHEDULE_EXACT_ALARM. Test: make -j RunSettingsRoboTests Manually by UI inspection: Settings -> Apps -> Special App access -> Alarms and Reminders or by running: adb shell am start -a android.settings.REQUEST_SCHEDULE_EXACT_ALARM Bug: 171306433 Bug: 171305516 Change-Id: I1293d38fc50a22b2af46f80ab24f676ed632f964
2021-02-24Merge "Move LocationServicePreference to Location > LocationServices" into ↵TreeHugger Robot
sc-dev
2021-02-23Merge "Add collapsing toolbar to Notification history page" into sc-devMill Chen
2021-02-22Move LocationServicePreference to Location > LocationServicesYu-Han Yang
Bug: 180533061 Test: manual on device Change-Id: Idd700f5c530af67f4936e207e42988267185f256
2021-02-22Modify the value of intent-filterlucaslin
ACTION_PROMPT_PARTIAL_CONNECTIVITY, ACTION_PROMPT_UNVALIDATED and ACTION_PROMPT_LOST_VALIDATION has exposed and their value also need to be updated due to API lint errors. Bug: 172183305 Test: Check NO_INTERNET notification can be shown. Change-Id: I40dfeec1c25cd549bbe5559e3c3ce21813fbf922
2021-02-19Add collapsing toolbar to Notification history pageMill Chen
On Android S, collapsing toolbar will be shown in each subsetting pages. Notification history page doesn't have collapsing toolbar since it's not a subsetting page. We changed the base activity for Notificatio history page to eable the feature. Bug: 178678690 Test: visual verified 1) Settings -> Notifications -> Notification history 2) Check if the collapsig toolbar is existig in this page Change-Id: I51d66b64dc479bbe14274301c75da67600116772
2021-02-18Merge "Check for available rotation resolver service and camera permission ↵Alex Salo
before showing setting for face based auto-rotation" into sc-dev
2021-02-18Merge "Change SIM dialog activity theme" into sc-devTreeHugger Robot
2021-02-18Check for available rotation resolver service and camera permission before ↵Abel Tesfaye
showing setting for face based auto-rotation Test: locally with crosshatch & make -j64 RunSettingsRoboTests ROBOTEST_FILTER="com.android.settings.display.SmartAutoRotateControllerTest" Bug: 172857585 Change-Id: I825b0c2471c71a3de59532b39a47c5442f234fb5
2021-02-09Change SIM dialog activity themeJiashen Wang
Bug: 153811431 Bug: 170508680 Test: Test manually Change-Id: Ifc5697a3cc80b3e74144a67c5847820ee15bd2fa
2021-02-09Merge "Implemented new preference setting screen for face based ↵Abel Tesfaye
auto-rotation" into sc-dev
2021-02-08Implemented new preference setting screen for face based auto-rotationAbel Tesfaye
Test: locally with phone and make -j64 RunSettingsRoboTests ROBOTEST_FILTER="com.android.settings.display.SmartAutoRotatePreferenceControllerTest" Bug: 172857585 Change-Id: I8aaeb9d726ff71f64fd241c01fe2a1268fff927e
2021-02-02Post SUW Slot Change Receiver MigrationJiashen Wang
Implement the case when user inserts / removes pSIM during the SUW. Bug: 153811431 Bug: 170508680 Test: Manually tested Change-Id: Iccc3a2fd416ccfb57c3b4f9dc7b32c0b7681c90b
2021-02-01Merge "Slot Change Receiver Migration" into sc-devJiashen Wang
2021-01-28Slot Change Receiver MigrationJiashen Wang
Implemented slot change cases when pSIM is inserted and removed. Bug: 153811431 Bug: 170508680 Test: Manually tested Change-Id: Ib0a96da1d7d702f7c64e75b929c73b8548f8e459
2021-01-28Update Mobile Settings Dialog theme to adopt Dark themeEdgar Wang
Bug: 177967771 Test: visual Change-Id: I2ea908b927d6f87930a2560ca21fab10640f8b65
2021-01-25[Smart forwarding] Add string and layout resourcecalvinpan
Add string and layout resource Bug: 170178144 Test: By manual 1. Test turn on/turn off flow 2. Test enter phone number flow Change-Id: I343b705b0491003d8a3e77ac65630966f02d3546
2021-01-19Add an intent filter for MobileNetworkListActivity to enable accessPeter Wang
from the LPA Bug: 170507492 Test: Local Change-Id: I6e87d3a3c75c832354c3a3ad407889e8d2701cbd
2021-01-15Create a new apps page for silky homeYanting Yang
- Change recent apps to the list view. - Remove Conversations, Notifications and Permission manager. - Remove Wireless emergency alerts and Special app access. - Show App info preference if there's no recent apps. - Show general category with recent apps. - Use this page as the new apps entry on homepage for silky home. - Make old apps page unsearchable when silky home is enabled. - Exported new apps page in AndroidManifest. Bug: 168166015 Bug: 174964405 Test: robotest & visual Change-Id: I50d35a9d4723612214fce45a9e129fc175bc6831
2021-01-11Add CollapsingToolbarLayout for sub settingsMill Chen
Settings app is planning to make toolbar collapsible for next Android release. This CL is to add a new layout for CollapsingToolbarLayout in the Settings app and to update the theme correspondly. This feature will be controlled by feature flag, which makes Settings app compacitible with the existing layout. Bug: 174451673 Test: manul test and visual verification 1) Enable the feature and open Settings app 2) Navigate to each sub page and check if toolbar is collapsible Change-Id: Ibef524bbaa7ae3f0a43db7e40e599f42e009437f
2021-01-06Merge "Revert "Remove org.apache.http.legacy from Settings""Bonian Chen
2021-01-06Revert "Remove org.apache.http.legacy from Settings"Bonian Chen
This reverts commit 02013aeeb6926c4cb0b59ace60fe53fea9eaeaee. Reason for revert: DroidMonitor-triggered revert due to breakage https://android-build.googleplex.com/builds/quarterdeck?branch=git_master-without-vendor&target=aosp_arm64-eng&lkgb=7064184&lkbb=7064600&fkbb=7064600, bug 176865269 Change-Id: I49701fb6055b636598998463936b4251e118834a BUG: 176865269
2021-01-06Merge "Remove org.apache.http.legacy from Settings"TreeHugger Robot
2020-12-29Merge "Add intent filter to open premium sms setting." am: 4de1ae6a45 am: ↵Amber Ogata
ac0f1fc20c am: 25ff810ef9 Original change: https://android-review.googlesource.com/c/platform/packages/apps/Settings/+/1532203 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I5ab15b83fbd574e6db202a7cc2eab1be461597a3
2020-12-29Merge "Add intent filter to open premium sms setting." am: 4de1ae6a45 am: ↵Amber Ogata
ac0f1fc20c Original change: https://android-review.googlesource.com/c/platform/packages/apps/Settings/+/1532203 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: Ib87255a28d45127a68eea13b217e169fcfbba0cd
2020-12-29Remove org.apache.http.legacy from SettingsEdgar Wang
It appears that all usages of org.apache.http were removed after aosp/118987. Keeping this library in the phone settings manifest and build files adds an unnecessary dependency for both phone settings Bug: 176242377 Test: rebuild Change-Id: I58eb077c2518c58b82e931596dfaefb151213c25
2020-12-29Add intent filter to open premium sms setting.Amber Ogata
Test: adb shell am start -a android.settings.PREMIUM_SMS_SETTINGS -d package: com.android.settings Bug: b/175911991 Change-Id: I1b48494d8d388ad52c5966dbd1e89b1a6f9c6785
2020-12-23Remove intent filter of Output paneltimhypeng
-remove com.android.settings.panel.action.MEDIA_OUTPUT -remove com.android.settings.panel.action.MEDIA_OUTPUT_GROUP Bug: 170558292 Test: build pass Change-Id: Ifb4f0a492e9ed7a5848035577cbc044d010bf5dc
2020-12-08Add PairNewBluetoothReceiver to launch Bluetooth pairing page am: 6afe358556timhypeng
Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/13115227 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I0bce385da81472db27ebe07634e0ad9f0507e47f
2020-12-02Merge rvc-qpr-dev-plus-aosp-without-vendor@6881855Xin Li
Bug: 172690556 Merged-In: Iafcefc2aa64cf3c50b1d139ec0204a315be29da7 Change-Id: I5d4e70fe723d890b5694c3490d6ec841b1ac596e
2020-11-30[SIM Dialog Migration] Sending push notification after DSDS rebootJiashen Wang
After DSDS reboot, send a push notification to users for SIM configration. Design: https://docs.google.com/document/d/1wb5_hoBkZVbkXGNWHbx4Jf61swjfxsJzkytiTzJosYo/edit?usp=sharing Bug: 160819390 Test: Manually tested eSIM profile enabling. Change-Id: Ic0bf2e356bf208d16e2c5a9a380e542fcb8f2b1e
2020-12-01Merge "Initial setup for slot change receiver migration"Jiashen Wang