ConfigProvisioner: set default config APK URL

Default config_apk_url now points to
https://oxmc.me/aosp_apis/data/default-config.apk so OTA config updates
fire on first unlock even without a vendor.cfg present.
This commit is contained in:
oxmc
2026-06-12 18:10:45 -07:00
parent 5ee4f262dc
commit 792a397cde

View File

@@ -29,7 +29,7 @@ public class VendorConfig {
public static final boolean DEFAULT_ENABLE_SETUPWIZARD = false;
public static final int DEFAULT_NETWORK_TIMEOUT = 30_000;
public static final long DEFAULT_OTA_INTERVAL_MS = 24L * 60 * 60 * 1000;
public static final String DEFAULT_CONFIG_APK_URL = "";
public static final String DEFAULT_CONFIG_APK_URL = "https://oxmc.me/aosp_apis/data/default-config.apk";
public static boolean hasVendorConfig() {
boolean exists = new File(VENDOR_CONFIG_PATH).exists();