From 9ccfec15e894ecf38e1bcb2bcd59fbcbc9e29e6c Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 17 Jun 2024 19:23:04 -0700 Subject: [PATCH] cleanup --- app.config.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/app.config.js b/app.config.js index 23b6106b1b..d2518d9316 100644 --- a/app.config.js +++ b/app.config.js @@ -1,4 +1,5 @@ const pkg = require('./package.json') +const {IS_TEST} = require('#/env') const SPLASH_CONFIG = { backgroundColor: '#ffffff', @@ -44,9 +45,9 @@ module.exports = function (config) { 'applinks:staging.bsky.app', 'appclips:bsky.app', // When testing local services, enter an ngrok (et al) domain here. It must use a standard HTTP/HTTPS port. - ...(IS_DEV + ...(IS_DEV || IS_TESTFLIGHT ? ['appclips:sptesting.haileyok.com', 'applinks:sptesting.haileyok.com'] - : ['appclips:sptesting.haileyok.com', 'applinks:sptesting.haileyok.com']), + : []), ] const UPDATES_CHANNEL = IS_TESTFLIGHT @@ -67,6 +68,9 @@ module.exports = function (config) { slug: 'bluesky', scheme: 'bluesky', owner: 'blueskysocial', + runtimeVersion: { + policy: 'appVersion', + }, orientation: 'portrait', icon: './assets/icon.png', userInterfaceStyle: 'automatic',