This project is mirrored from https://github.com/LineageOS/android_packages_apps_Updater.git.
Pull mirroring updated .
- 26 Feb, 2019 1 commit
-
-
Michael Bestas authored
Change-Id: I3d9d81c42c6e6465cd66a12054389bafe34ad192
-
- 10 Feb, 2019 1 commit
-
-
LuK1337 authored
* This replaces auto update check switch with a dropdown with 4 options: * Never * Once a day * Once a week (default) * Once a month Change-Id: I4bcae4c013a5d44958f9c54d641e64aac3062a8b
-
- 12 Jan, 2019 1 commit
-
-
Michael Bestas authored
Change-Id: I699982fe2506a85cf9cb05295fafef3e59467b8d
-
- 27 Sep, 2018 1 commit
-
-
LuK1337 authored
* Required to be able to call startForeground() and stopForeground(). Change-Id: I7ac78cf450a60cc8985876ddcc42621e61aa5245
-
- 30 Aug, 2018 2 commits
-
-
Luca Stefani authored
Change-Id: Ie3f32e91ff5d6dc1422783bdef403c023b519149
-
Nolen Johnson authored
Change-Id: I8891b94c4b44201e9a0d9184e435c8da6eba3d3b
-
- 26 Aug, 2018 1 commit
-
-
Anton Hansson authored
This change sets LOCAL_SDK_VERSION for all packages where this is possible without breaking the build, and LOCAL_PRIVATE_PLATFORM_APIS := true otherwise. Setting one of these two will be made required soon, and this is a change in preparation for that. Not setting LOCAL_SDK_VERSION makes the app implicitly depend on the bootclasspath, which is often not required. This change effectively makes depending on private apis opt-in rather than opt-out. Bug: 73535841 Change-Id: Iabb0556dc1c80c7fc7f6c76d61d5e441b03cdce0
-
- 16 Aug, 2018 1 commit
-
-
Michael Bestas authored
Change-Id: I500c131c176e7f511972bb0b1529e54f127b7306
-
- 08 Aug, 2018 1 commit
-
-
LuK1337 authored
* EXTRA_PLUGGED is not a boolean. Change-Id: I3c2869cc4e08b48e396e5bae5ef22383fcbf7260
-
- 05 Aug, 2018 1 commit
-
-
Michael Bestas authored
Change-Id: I641ddf4c5fa3061d8316be990c1332dc6000e34d
-
- 26 Jul, 2018 1 commit
-
-
Rashed Abdel-Tawab authored
Change-Id: I90d5a86bb943f137a44e70be508ee6efb0c77ed8
-
- 24 Jul, 2018 2 commits
-
-
LuK1337 authored
* We are getting permission denial when sending Intent.ACTION_REBOOT broadcast, using pm.reboot() instead works just fine. Change-Id: I38d0ad8cc5f4c9362fd5baf7476e14bff56616dd
-
LuK1337 authored
* After update is complete button is being handled in handleNotActiveStatus instead of handleActiveStatus. Change-Id: I6a4df580f93b71fd12e902801125acae668ec991
-
- 15 Jul, 2018 1 commit
-
-
Michael Bestas authored
Change-Id: I7e73d20b38b6d9b743ef278c39057d558121e883
-
- 14 Jul, 2018 4 commits
-
-
Gabriele M authored
FLAG_ONE_SHOT doesn't make so much sense here, the intents are generic and can be repeated. Change-Id: Ib457d975387dfd838372639e2aaa40a3df6f4d15
-
Luca Stefani authored
* Lower default value by 10% * Decrease the level by another 10% if charging * Always allow installation in case device doesn't have a battery * Show the requirements in the alert dialog Change-Id: Iebb10220612006fbd096eb474cf3034ef52144b3
-
Gabriele M authored
Even if technically it is compatible. Change-Id: I72d39c761ad02b851c5ec7cfae664e886931f852
-
LuK1337 authored
Change-Id: I6916639f05c52ae198f0d1656deb23ee5186907f
-
- 11 Jul, 2018 1 commit
-
-
TheScarastic authored
Change-Id: I380a39bf6008b341c8005ac548d42d2413d0d643
-
- 09 Jul, 2018 1 commit
-
-
Michael Bestas authored
Change-Id: Icf78471c3fea2d0c67e63ce155e92748787e7a9c
-
- 18 Jun, 2018 1 commit
-
-
Michael Bestas authored
Change-Id: Ie3bbaadd470b5d1fc22683b9f7280d912b644e53
-
- 15 Jun, 2018 1 commit
-
-
LuK1337 authored
* We cannot create dialog from service level without hardcoding theme resource and granting SYSTEM_ALERT_WINDOW permission therefore we got to move it here. Change-Id: I70ee5d6c8ef4af4f5c6f29e593b1c20797781017
-
- 13 Jun, 2018 6 commits
-
-
Gabriele M authored
The recovery doesn't install the update if the remaining battery capacity isn't at least 20% (or 15% if charging). Require at least 40%, just to be safe. Change-Id: I5cd7c40f029141cde2b0922b25fece2b55989710
-
Gabriele M authored
- Don't use BigTextStyle if we only need to show a single line of text, but keep using it if the progressbar is visible. - Change the icon to reflect the currrent state. - Use android.R.drawable instead of com.android.internal.R.drawable Change-Id: I0f69fe5f4fa63cdec180e89afa098d27819f33fd
-
Gabriele M authored
Change-Id: I8d65746b58c16a7cf4a430ea29bb7b0fba1802d5
-
Gabriele M authored
For symmetry with ABUpdateInstaller. Change-Id: I9b61ed286c91f10140705e7b3e24b0eab0c75f49
-
Gabriele M authored
This is just useless as is. Change-Id: I957ea3bda4097ccb8d730943639cd5e74b1b2440
-
Gabriele M authored
This was meant to provide an upgrade path from the old app. It's been almost a year now, this class is no longer needed. Change-Id: I17c82e5877b275c5ceb3caefa28066abc170f095
-
- 03 Jun, 2018 1 commit
-
-
Michael Bestas authored
Change-Id: I27a25d23f5bffb328cce4dab3b440ad20d3a00bc
-
- 16 May, 2018 2 commits
-
-
Gabriele M authored
The main activity connects to the service after setting up the local broadcast. This allows the service to send notification before the activity is ready, causing null pointer exceptions. This happens for example rotating the screen while an update is being installed. Also, replace the existing check on mUpdaterController with a check on mDownloadsId since the latter depends on the former and both are required. Change-Id: I620fd7aa1e90468ab40dfedaa06c23f96f3e6807
-
Gabriele M authored
The server may temporarily report an incorrect size that is smaller than the actual size. Content-Length is expected to always be accurate, but its value does not correspond to the full file size when resuming downloads. Use Content-Length only if it's bigger than the currently known size. Change-Id: I2cc06bfbd2349f21528047b4840f549fbe84964e
-
- 08 May, 2018 1 commit
-
-
Michael Bestas authored
Change-Id: I7197b0358cd9e9e94260cee425390fa7deb6fe2d
-
- 04 May, 2018 1 commit
-
-
Michael Bestas authored
* Fixes fd096a56 Change-Id: I19633ead80b690e1c22655bcac842a901e450f8a
-
- 21 Apr, 2018 1 commit
-
-
Gabriele M authored
Change-Id: Ie6bbbddbbd9fd7adbc16472ad9c42c1d257413a1
-
- 20 Apr, 2018 2 commits
-
-
Gabriele M authored
Multiple update list downloads can happen simultaneously. Use unique file names for the temporary jsons to avoid conflicts. Change-Id: I751c9838394e1f5aebbe359f61532947b429f39b
-
Gabriele M authored
This needs to be done explicitly after the recent UI changes. Change-Id: Ie333a51d7c679c17998872071b2bd84c1f47ca48
-
- 19 Apr, 2018 1 commit
-
-
Michael Bestas authored
Change-Id: I593d19fa09ae2605d05aa0a38029691d3653821b
-
- 17 Apr, 2018 1 commit
-
-
Bruno Martins authored
Change-Id: I45553984269bd2375311047b053e01f67349c695
-
- 11 Apr, 2018 1 commit
-
-
Gabriele M authored
This ensures that each Switch is always fully visible independently of the size of system font. Change-Id: I1e56a9537dbbb124d86ea0da76d48b7b53172e47
-
- 10 Apr, 2018 1 commit
-
-
Gabriele M authored
Useful to test OTA updates without setting up a server. Change-Id: Ic4c2dc1ea9ce6bd6ec6750d1c4250079a5be7580
-