Skip to content

Commit

Permalink
refactor: rename activitywatch-android -> androidapp-activitywatch
Browse files Browse the repository at this point in the history
New naming makes more apparent that package is an Android APK, not
normal binary.
Other Android apps will follow this convention.

Also restricted to platforms.linux because Android SDK not available for
`aarch64-darwin`
  • Loading branch information
Lehmanator committed Apr 2, 2024
1 parent 42aae52 commit 4036712
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
fetchFromGitHub,
}:
androidenv.buildApp rec {
name = "activitywatch-android";
pname = "activitywatch-android";
name = "androidapp-activitywatch";
pname = "androidapp-activitywatch";
version = "0.12.1";

#release = true;
Expand All @@ -34,6 +34,8 @@ androidenv.buildApp rec {
license = licenses.mpl20;
maintainers = with maintainers; [];
mainProgram = "aw-android";
platforms = platforms.all;
#platforms = lists.remove "aarch64-darwin" platforms.unix;
#badPlatforms = ["aarch64-darwin"];
platforms = platforms.linux;
};
}

0 comments on commit 4036712

Please sign in to comment.