diff --git a/ota/expo-manifest.json b/ota/expo-manifest.json new file mode 100644 index 0000000..2e352f9 --- /dev/null +++ b/ota/expo-manifest.json @@ -0,0 +1,10 @@ +{ + "version": "0.1.0", + "runtimeVersion": "0.1.0", + "assets": [], + "launchAsset": { + "key": "bundle", + "contentType": "application/javascript", + "url": "https://git.childish-ghost.com/LukeMackin/Yuzu-GCA/releases/download/v0.1.0-dav-android-8/bundle.js" + } +} diff --git a/packages/client-android/app.json b/packages/client-android/app.json index 63e2673..9d507d4 100644 --- a/packages/client-android/app.json +++ b/packages/client-android/app.json @@ -4,39 +4,24 @@ "slug": "yuzu-gca", "version": "0.1.0", "orientation": "portrait", - "icon": "./assets/icon.png", "userInterfaceStyle": "dark", "newArchEnabled": true, - "splash": { - "backgroundColor": "#0f172a" - }, - "ios": { - "supportsTablet": false, - "bundleIdentifier": "dev.yuzu.gca" - }, + "splash": { "backgroundColor": "#0f172a" }, + "ios": { "supportsTablet": false, "bundleIdentifier": "dev.yuzu.gca" }, "android": { - "adaptiveIcon": { - "backgroundColor": "#0f172a" - }, + "adaptiveIcon": { "backgroundColor": "#0f172a" }, "package": "dev.yuzu.gca", "allowBackup": false, - "permissions": [ - "REQUEST_INSTALL_PACKAGES" - ] + "versionCode": 8, + "permissions": ["REQUEST_INSTALL_PACKAGES"] }, - "plugins": [ - "expo-updates" - ], + "plugins": ["expo-updates"], "updates": { "enabled": true, "checkAutomatically": "ON_LOAD", "fallbackToCacheTimeout": 3000, - "url": "https://git.childish-ghost.com/LukeMackin/Yuzu-GCA/releases/download/manifest/expo-manifest.json" + "url": "https://git.childish-ghost.com/LukeMackin/Yuzu-GCA/raw/branch/main/ota/expo-manifest.json" }, - "extra": { - "eas": { - "projectId": "yuzu-gca-android" - } - } + "extra": { "eas": { "projectId": "yuzu-gca-android" } } } }