From e3c8d723e3b02eb85bcc1c7533edc013ff3a262d Mon Sep 17 00:00:00 2001 From: GaryOderNichts Date: Thu, 12 Mar 2020 08:34:56 +0100 Subject: [PATCH] Add linebrake notice for module.prop This made some trouble when creating a module.prop on Windows. The file could not be read properly by magisk manager and my module folder had an \r at the end which made it unremovable through Magisk Manager. --- docs/guides.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/guides.md b/docs/guides.md index 9b6b6fd1b..41bf050f3 100644 --- a/docs/guides.md +++ b/docs/guides.md @@ -70,6 +70,7 @@ ex: ✓ `a_module`, ✓ `a.module`, ✓ `module-101`, ✗ `a module`, ✗ `1_mod This is the **unique identifier** of your module. You should not change it once published. - `versionCode` has to be an **integer**. This is used to compare versions - Others that weren't mentioned above can be any **single line** string. +- Make sure to use the `UNIX (LF)` line break type and not the `Windows (CR+LF)` or `Macintosh (CR)` one. #### Shell scripts (`*.sh`) Please read the [Boot Scripts](#boot-scripts) section to understand the difference between `post-fs-data.sh` and `service.sh`. For most module developers, `service.sh` should be good enough if you just need to run a boot script.