├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── fingerprint-submission.md │ └── issue-submission.md ├── LICENSE ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── common ├── bootlog.sh ├── prints.sh ├── propsconf_conf ├── propsconf_late └── util_functions.sh ├── customize.sh ├── module.md5 ├── module.prop ├── post-fs-data.sh ├── prints.sh ├── service.sh ├── system └── binpath │ └── props └── uninstall.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wootje/MagiskHidePropsConf/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/fingerprint-submission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wootje/MagiskHidePropsConf/HEAD/.github/ISSUE_TEMPLATE/fingerprint-submission.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-submission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wootje/MagiskHidePropsConf/HEAD/.github/ISSUE_TEMPLATE/issue-submission.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wootje/MagiskHidePropsConf/HEAD/LICENSE -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wootje/MagiskHidePropsConf/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wootje/MagiskHidePropsConf/HEAD/README.md -------------------------------------------------------------------------------- /common/bootlog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wootje/MagiskHidePropsConf/HEAD/common/bootlog.sh -------------------------------------------------------------------------------- /common/prints.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wootje/MagiskHidePropsConf/HEAD/common/prints.sh -------------------------------------------------------------------------------- /common/propsconf_conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wootje/MagiskHidePropsConf/HEAD/common/propsconf_conf -------------------------------------------------------------------------------- /common/propsconf_late: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wootje/MagiskHidePropsConf/HEAD/common/propsconf_late -------------------------------------------------------------------------------- /common/util_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wootje/MagiskHidePropsConf/HEAD/common/util_functions.sh -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wootje/MagiskHidePropsConf/HEAD/customize.sh -------------------------------------------------------------------------------- /module.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wootje/MagiskHidePropsConf/HEAD/module.md5 -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wootje/MagiskHidePropsConf/HEAD/module.prop -------------------------------------------------------------------------------- /post-fs-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wootje/MagiskHidePropsConf/HEAD/post-fs-data.sh -------------------------------------------------------------------------------- /prints.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wootje/MagiskHidePropsConf/HEAD/prints.sh -------------------------------------------------------------------------------- /service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wootje/MagiskHidePropsConf/HEAD/service.sh -------------------------------------------------------------------------------- /system/binpath/props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wootje/MagiskHidePropsConf/HEAD/system/binpath/props -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wootje/MagiskHidePropsConf/HEAD/uninstall.sh --------------------------------------------------------------------------------