Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
use nix
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
*.zip
/dist
/logs
/module-*
/module-*
/.direnv
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ It requires Magisk to be installed obviously as it's a Magisk module. If you don
> [!TIP]
> It's a good idea to enable ADB debugging as well before installing in case of any issues.

> [!WARNING]
> Please make sure that the contents of the `remove_files` string in the [common.sh](./src/module-microg/common.sh) script exist on your device.
> If not, use a command like `# find -L /system -type f -name '*<GmsCore|Phonesky|...>*'` to find the correct path, replace it and then follow the [Build Instructions](#build).

1. Download latest version from [releases](https://github.com/SelfRef/noogle-magisk/releases)
- Or build it yourself
2. Install through Magisk app
Expand Down
8 changes: 8 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
with import <nixpkgs> { };
mkShell {
nativeBuildInputs = [
jq
curlMinimal
zip
];
}