Hopefully feature-complete Android Bluesky client written in Expo
atproto bluesky
at main 1.3 kB view raw
1{ 2 "expo": { 3 "name": "dusksky", 4 "slug": "dusksky", 5 "version": "1.0.0", 6 "orientation": "portrait", 7 "icon": "./assets/images/icon.png", 8 "scheme": "app.dusksky", 9 "userInterfaceStyle": "automatic", 10 "newArchEnabled": true, 11 "ios": { 12 "supportsTablet": true 13 }, 14 "android": { 15 "adaptiveIcon": { 16 "backgroundColor": "#E6F4FE", 17 "foregroundImage": "./assets/images/android-icon-foreground.png", 18 "backgroundImage": "./assets/images/android-icon-background.png", 19 "monochromeImage": "./assets/images/android-icon-monochrome.png" 20 }, 21 "edgeToEdgeEnabled": true, 22 "predictiveBackGestureEnabled": false, 23 "package": "net.sharpmars.dusksky" 24 }, 25 "web": { 26 "output": "static", 27 "favicon": "./assets/images/favicon.png" 28 }, 29 "plugins": [ 30 "expo-router", 31 [ 32 "expo-splash-screen", 33 { 34 "image": "./assets/images/splash-icon.png", 35 "imageWidth": 200, 36 "resizeMode": "contain", 37 "backgroundColor": "#ffffff", 38 "dark": { 39 "backgroundColor": "#000000" 40 } 41 } 42 ], 43 "expo-video", 44 "expo-secure-store" 45 ], 46 "experiments": { 47 "typedRoutes": true, 48 "reactCompiler": true 49 } 50 } 51}