Hopefully feature-complete Android Bluesky client written in Expo
atproto bluesky
3
fork

Configure Feed

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

Make separate dev build

SharpMars 19227eba cc5b9d85

+20
+20
app.config.ts
··· 1 + import { ExpoConfig, ConfigContext } from "expo/config"; 2 + 3 + const truthyStrings = ["y", "yes", "true", "1"]; 4 + const APP_RELEASE = truthyStrings.includes((process.env.APP_RELEASE ?? "").toLowerCase().trim()) || !!process.env.CI; 5 + console.log("Using " + (APP_RELEASE ? "production" : "development") + " project"); 6 + 7 + export default ({ config }: ConfigContext): ExpoConfig => { 8 + return { 9 + ...config, 10 + name: APP_RELEASE ? "Dusksky" : "Dusksky (Dev)", 11 + slug: APP_RELEASE ? "dusksky" : "dusksky-dev", 12 + scheme: "app.dusksky", 13 + android: { 14 + package: APP_RELEASE ? "net.sharpmars.dusksky" : "net.sharpmars.dusksky.dev", 15 + }, 16 + extra: { 17 + isDev: !APP_RELEASE, 18 + }, 19 + }; 20 + };