A cheap attempt at a native Bluesky client for Android
8
fork

Configure Feed

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

at worktree-typed-snacking-peach 16 lines 624 B view raw
1#!/bin/bash 2 3SDK_URL="https://dl.google.com/android/repository/commandlinetools-linux-13114758_latest.zip" 4ANDROID_HOME="${ANDROID_HOME:-$HOME/android-sdk}" 5 6mkdir -p "$ANDROID_HOME/cmdline-tools" 7 8curl -sL "$SDK_URL" -o /tmp/cmdline-tools.zip 9unzip -q /tmp/cmdline-tools.zip -d /tmp/ 10mv /tmp/cmdline-tools "$ANDROID_HOME/cmdline-tools/latest" 11rm /tmp/cmdline-tools.zip 12 13yes | "$ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager" --licenses > /dev/null 2>&1 14"$ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager" "platform-tools" "platforms;android-36" "build-tools;36.1.0" > /dev/null 2>&1 15 16export ANDROID_HOME="$ANDROID_HOME"