Polls a manifest to discover per-component update endpoints (currently just webview) and silently installs/switches providers without a full system OTA.
15 lines
328 B
Plaintext
15 lines
328 B
Plaintext
/*
|
|
* SPDX-FileCopyrightText: oxmc / PawletOS
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
package pawletos.bgupd;
|
|
|
|
parcelable ComponentStatus {
|
|
String componentId;
|
|
String activeProvider;
|
|
String installedVersion;
|
|
long lastCheckedTimestamp;
|
|
boolean updateAvailable;
|
|
List<String> disabledProvidersPresent;
|
|
}
|