bump to 1.0.3

This commit is contained in:
5ec1cff
2024-07-28 21:45:40 +08:00
parent 479459d863
commit 6f82e4011b
2 changed files with 12 additions and 4 deletions

View File

@@ -9,6 +9,8 @@ A trick of keystore. **Android 12 or above is required**.
3. Customize target packages at `/data/adb/tricky_store/target.txt` (Optional).
4. Enjoy!
**All configuration files will take effect immediately.**
## keybox.xml
format:
@@ -63,6 +65,9 @@ TAGS=release-keys
SECURITY_PATCH=2024-07-05
```
For Magisk users: if you don't need this feature and zygisk is disabled, please remove or rename the
folder `/data/adb/modules/tricky_store/zygisk` manually.
## Support TEE broken devices
Tricky Store will hack the leaf certificate by default. On TEE broken devices, this will not work because we can't retrieve the leaf certificate from TEE. You can add a `!` after a package name to enable generate certificate support for this package.
@@ -77,10 +82,13 @@ io.github.vvb2060.keyattestation
com.google.android.gms!
```
## Known issues
## TODO
- App Attest Key is not supported.
- StrongBox is not supported.
- Support App Attest Key.
- [Support Android 11 and below.](https://github.com/5ec1cff/TrickyStore/issues/25#issuecomment-2250588463)
- Support automatic selection mode.
PR is welcomed.
## Acknowledgement

View File

@@ -24,7 +24,7 @@ val gitCommitHash = "git rev-parse --verify --short HEAD".execute()
// also the soname
val moduleId by extra("tricky_store")
val moduleName by extra("Tricky Store")
val verName by extra("v1.0.2")
val verName by extra("v1.0.3")
val verCode by extra(gitCommitCount)
val commitHash by extra(gitCommitHash)
val abiList by extra(listOf("arm64-v8a", "x86_64"))