summaryrefslogtreecommitdiffstats
path: root/src/com/android/settings/SettingsLicenseActivity.java
Commit message (Collapse)AuthorAgeFilesLines
* Improve multi user functionality for restricted usersAndras Kloczl2020-05-291-2/+1
| | | | | | | | | | | | | - Restricted users can change their name - Improved App&Content access screen - Remove "Turn on phone calls" from restricted user detail page Doc: http://shortn/_Prb3SJ3xJ3 Bug: 142798722 Test: Run robo tests with this command: make -j64 RunSettingsRoboTests Change-Id: I2aadf32aef52ba5ad0db7aa0cd83bac9d9941589 (cherry picked from commit f4759e00d53671b273dee3d6c9e62203df6f629b)
* Migrate all MetricsProto enums to SettingsEnumsFan Zhang2019-01-171-1/+0
| | | | | | Bug: 122855168 Test: rebuild Change-Id: I962d9a71179f86b7cae9dc5e9a00e0aa1557dc76
* Remove unused system propertiesInseob Kim2018-12-191-27/+4
| | | | | | | | | | Properties ro.config.license_path and ro.config.manual_path are not set from anywhere but only from a test. Bug: N/A Test: mma -j Change-Id: I651405f3a201f5129bf37059e96e7bcc5efa73bf (cherry picked from commit 31e37683f0e859d355d0bbb57500498cc0de3962)
* Sort importsFan Zhang2018-08-281-5/+5
| | | | | | | | Having consistent import order will reduce chance of merge conflict between internal and external master Test: rebuild Change-Id: I0b1a170967ddcce7f388603fd521f6ed1eeba30b
* Settings Fragment Migration (Build pass app)tmfang2018-07-111-5/+5
| | | | | | | | This patch focused on fixing compile errors and some runtime errors. Test: We can't test it now. But we will have an integration test later. Bug: 110259478 Change-Id: I16c471ddcd0fa1460c665b7f74d86fcace5ee67b
* Settings Fragment Migration (Change imports)tmfang2018-07-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit *only* changes imports and optimize imports. We don't do anything else. This patch can't compile pass and run test case. We will update other patches to fix these problem. Change list. 1. import android.app.Fragment; -> import androidx.fragment.app.Fragment; 2. import android.app.DialogFragment; -> import androidx.fragment.app.DialogFragment; 3. import android.app.ListFragment; -> import androidx.fragment.app.ListFragment; 4. import android.app.LoaderManager; -> import androidx.loader.app.LoaderManager; 5. import android.content.AsyncTaskLoader; -> import androidx.loader.content.AsyncTaskLoader; 6. import android.content.Loader; -> import androidx.loader.content.Loader; 7. import android.app.FragmentTransaction; -> import androidx.fragment.app.FragmentTransaction; 8. import android.app.FragmentManager; -> import androidx.fragment.app.FragmentManager; 9. import android.app.LoaderManager.LoaderCallbacks; -> import androidx.loader.app.LoaderManager.LoaderCallbacks; Bug: 110259478 Test: Can't test it. Change-Id: I0a3f98fff34a3494a839c3c42aeabcec3df2c8b3
* Reorder and clean up imports.Fan Zhang2018-06-181-2/+3
| | | | | Test: rebuild Change-Id: I178485c84ae7146f991fd77b6d7504b029942a68
* Migrate Settings to androidx.Aurimas Liutikas2018-04-201-2/+2
| | | | | | Test: make Settings Bug: 76692459 Change-Id: I941dea40562170649bf056e675cc32e5163c0e39
* Move codes generating html file from xml files to SettingsLib (1/2)Jaekyun Seok2017-12-071-6/+3
| | | | | | | | | | | | LicenseHtmlGeneratorFromXml, LicenseHtmlLoader and indirecly AsyncLoader shoud be commonly used by Settings and TvSettings. So this CL will move them to SettingsLib. Test: building succeeded and tested on sailfish. make ROBOTEST_FILTER=SettingsLicenseActivityTest RunSettingsRoboTests Change-Id: I12e9169b1d3d313a6c5da0d575a6526327268381
* Generate license html file from xml files of partitionsJaekyun Seok2017-04-291-4/+74
| | | | | | | | | | | | | | | Treble-ization requires each partner to store their license information into their own partition because each partition can be updated individually. So each partition will have its own NOTICE.xml.gz, and Settings should be able to generate license html from xml files of partitions. Test: building succeeded and tested on sailfish. make ROBOTEST_FILTER=LicenseHtmlGeneratorFromXmlTest RunSettingsRoboTests make ROBOTEST_FILTER=LicenseHtmlLoaderTest RunSettingsRoboTests make ROBOTEST_FILTER=SettingsLicenseActivityTest RunSettingsRoboTests Bug: 37099941 Change-Id: If797759d300ee20dd43ad8efd7d17b4f7e0c4537
* System paths are okay now; no more special-casing.Jeff Sharkey2016-02-011-3/+0
| | | | | Bug: 26895798 Change-Id: I41df87f1fe77c2c523272cf43b5db6a0a7395bed
* Temporary hack to keep file:// Uris working.Jeff Sharkey2016-01-281-0/+4
| | | | | Bug: 26860922 Change-Id: I29cc4f4328b829e75a4523bd4d710da3e872f59c
* Migrate license display to HTMLViewer.Jeff Sharkey2014-11-141-170/+29
| | | | | | | | | For security purposes, we're no longer allowing WebView to be loaded when running as system UID. Instead, we now launch HTMLViewer to show the details. Bug: 18376908 Change-Id: I3c6a7897ab4ad0fc2c5463e5d69c7f53fb934e31
* Show the license dialog only if the activity is still showingAmith Yamasani2012-08-231-1/+3
| | | | | Bug: 6888990 Change-Id: Ide267739c7fd296356f26293f02bd794906fbd0a
* Dismiss dialogs properly on closing.Amith Yamasani2011-11-141-4/+5
| | | | | | | | Also make the invisible activity truly invisible (was showing a blue line behind the dialog). Bug: 5572140 Change-Id: I67b31f0682f189c7075011e0dd0660b0fbc543d9
* Remove the deprecated things from Config.java. These havent been working ↵Joe Onorato2011-04-071-2/+1
| | | | | | since before 1.0. Change-Id: I88ea860fd6edf7c128cf1a201329f09428ab382c
* Settings: Improved UX when viewing open source license info.Henrik Carlsson2011-03-291-48/+145
| | | | | | | | Added spinning progress indicator to the open source license dialog. The actual file loading is now handled by a separate thread, in order to provide user feedback and reduce risk for ANR. Change-Id: Ia12727ecc2fe8114e0d1384769b568142c8a1db6
* auto import from //depot/cupcake/@135843The Android Open Source Project2009-03-031-0/+123
|
* auto import from //depot/cupcake/@135843The Android Open Source Project2009-03-031-123/+0
|
* auto import from //branches/cupcake/...@126645The Android Open Source Project2009-01-151-13/+21
|
* Code drop from //branches/cupcake/...@124589The Android Open Source Project2008-12-171-23/+1
|
* Initial ContributionThe Android Open Source Project2008-10-211-0/+137