chore: rename package from music-remote to encore.

This commit is contained in:
2026-07-30 00:47:30 -04:00
parent 7d4dd0ff00
commit d8977deaf3
48 changed files with 347 additions and 164 deletions
+4 -4
View File
@@ -42,12 +42,12 @@
musicRemote = pkgs.callPackage ./package.nix {
inherit androidSdk androidHome buildToolsVersion;
};
applicationId = "ca.ksamad.musicremote";
applicationId = "ca.ksamad.encore";
in
{
formatter = pkgs.nixfmt-rfc-style;
# `nix build` -> reproducible debug APK in ./result/music-remote.apk
# `nix build` -> reproducible debug APK in ./result/encore.apk
packages.default = musicRemote;
# `nix develop` -> command-line dev shell (gradle + SDK wired up).
@@ -66,7 +66,7 @@
GRADLE_OPTS = "-Dorg.gradle.project.android.aapt2FromMavenOverride=${androidHome}/build-tools/${buildToolsVersion}/aapt2";
shellHook = ''
echo "music-remote dev shell try: gradle assembleDebug"
echo "encore dev shell try: gradle assembleDebug"
'';
};
@@ -79,7 +79,7 @@
# app on it. `app` points at the built package directory (the script globs
# `*.apk` inside it); `package`/`activity` make it auto-start after boot.
packages.emulate = pkgs.androidenv.emulateApp {
name = "emulate-MusicRemote";
name = "emulate-Encore";
platformVersion = "35";
abiVersion = "x86_64";
# Bare AOSP image. This app only needs the base Android framework