Point default config APK URL at the consolidated apis/aosp path

Was still pointing at the old aosp_apis/data/ location.
This commit is contained in:
2026-07-09 01:26:16 -07:00
parent 8d6ec6f49a
commit 029756921f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ enable_configapk_service=true
device_provisioned=true
enable_setupwizard=false
config_apk_package=app.pawlet.config
config_apk_url=https://oxmc.me/aosp_apis/data/default-config.apk
config_apk_url=https://oxmc.me/apis/aosp/data/default-config.apk
```
## Config APK format
@@ -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 = "https://oxmc.me/aosp_apis/data/default-config.apk";
public static final String DEFAULT_CONFIG_APK_URL = "https://oxmc.me/apis/aosp/data/default-config.apk";
public static boolean hasVendorConfig() {
boolean exists = new File(VENDOR_CONFIG_PATH).exists();