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.

Do Android SDK this way instead

SharpMars 4337c0b5 8b433911

+8 -12
+8 -12
flake.nix
··· 2 2 inputs = { 3 3 nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; 4 4 flake-utils.url = "github:numtide/flake-utils"; 5 - android-nixpkgs.url = "github:tadfisher/android-nixpkgs"; 6 5 }; 7 6 8 7 outputs = { self, nixpkgs, flake-utils, android-nixpkgs }: ··· 17 16 }; 18 17 19 18 pinnedJDK = pkgs.jdk17; 20 - androidSdk = android-nixpkgs.sdk.${system} (sdk: 21 - with sdk; 22 - [ 23 - build-tools-35-0-0 24 - cmdline-tools-latest 25 - platform-tools 26 - platforms-android-36 27 - ndk-27-1-12297006 28 - cmake-3-22-1 29 - ] 30 - ); 19 + androidComposition = pkgs.androidenv.composeAndroidPackages { 20 + buildToolsVersions = [ "35.0.0" ]; 21 + platformVersions = [ "36" ]; 22 + includeNDK = true; 23 + ndkVersions = ["27.1.12297006"]; 24 + cmakeVersions = [ "3.22.1" ]; 25 + }; 26 + androidSdk = androidComposition.androidsdk; 31 27 in 32 28 { 33 29 devShell = pkgs.mkShell rec {