temp: different name and slug for android builds for parallel install with the main app

This commit is contained in:
Oleksii Bulenok
2026-07-10 10:17:07 +02:00
parent db5acfe6e3
commit bcf2a0b6a4
+2 -2
View File
@@ -45,7 +45,7 @@ module.exports = function (_config) {
return { return {
expo: { expo: {
version: VERSION, version: VERSION,
name: 'Bluesky', name: IS_DEV ? 'Bluesky (New Arch)' : 'Bluesky', // TODO: revert before merging
slug: 'bluesky', slug: 'bluesky',
scheme: 'bluesky', scheme: 'bluesky',
owner: 'blueskysocial', owner: 'blueskysocial',
@@ -196,7 +196,7 @@ module.exports = function (_config) {
backgroundColor: '#006AFF', backgroundColor: '#006AFF',
}, },
googleServicesFile: './google-services.json', googleServicesFile: './google-services.json',
package: 'xyz.blueskyweb.app', package: IS_DEV ? 'xyz.blueskyweb.app.newarch' : 'xyz.blueskyweb.app', // TODO: revert before merging
intentFilters: [ intentFilters: [
{ {
action: 'VIEW', action: 'VIEW',