Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

RM unneeded config plugin, update primary color (#10153)

authored by

Samuel Newman and committed by
GitHub
d2519a4f a049a653

+1 -29
+1 -2
app.config.js
··· 54 54 }, 55 55 icon: './assets/app-icons/ios_icon_default_next.png', 56 56 userInterfaceStyle: 'automatic', 57 - primaryColor: '#1083fe', 57 + primaryColor: '#006AFF', 58 58 newArchEnabled: false, 59 59 ios: { 60 60 supportsTablet: false, ··· 296 296 './plugins/withAndroidManifestFCMIconPlugin.js', 297 297 './plugins/withAndroidManifestIntentQueriesPlugin.js', 298 298 './plugins/withAndroidStylesAccentColorPlugin.js', 299 - './plugins/withAndroidDayNightThemePlugin.js', 300 299 './plugins/withAndroidNoJitpackPlugin.js', 301 300 './plugins/shareExtension/withShareExtensions.js', 302 301 './plugins/notificationsExtension/withNotificationsExtension.js',
-27
plugins/withAndroidDayNightThemePlugin.js
··· 1 - // Based on https://github.com/expo/expo/pull/33957 2 - // Could be removed once the app has been updated to Expo 53 3 - const {withAndroidStyles} = require('@expo/config-plugins') 4 - 5 - module.exports = function withAndroidDayNightThemePlugin(appConfig) { 6 - const cleanupList = new Set([ 7 - 'colorPrimary', 8 - 'android:editTextBackground', 9 - 'android:textColor', 10 - 'android:editTextStyle', 11 - ]) 12 - 13 - return withAndroidStyles(appConfig, config => { 14 - config.modResults.resources.style = config.modResults.resources.style 15 - ?.map(style => { 16 - if (style.$.name === 'AppTheme' && style.item != null) { 17 - style.item = style.item.filter(item => !cleanupList.has(item.$.name)) 18 - } 19 - return style 20 - }) 21 - .filter(style => { 22 - return style.$.name !== 'ResetEditText' 23 - }) 24 - 25 - return config 26 - }) 27 - }