Prepare to release TEESimulator 2.0

The following two bugs are fixed:
1. `zygisk.json` is renamed to `update.json`, which is indicated in `module.prop`.
2. To avoid over optimization of R8, we must keep certains packages, which are found after many experiments.
This commit is contained in:
JingMatrix
2025-11-26 18:34:08 +01:00
parent 6193da0e66
commit ee02216534
4 changed files with 29 additions and 4 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ val gitExecutor = objects.newInstance(GitExecutor::class.java)
val gitCommitCount = gitExecutor.execute("git rev-list HEAD --count", rootDir).toInt()
val gitCommitHash = gitExecutor.execute("git rev-parse --verify --short HEAD", rootDir)
val verName = "v1.0"
val verName = "v2.0"
android {
namespace = "org.matrix.TEESimulator"
+6
View File
@@ -1,3 +1,9 @@
-keep class org.matrix.TEESimulator.interception.keystore.** { *; }
-keep class org.bouncycastle.jcajce.provider.** { *; }
-keep class org.bouncycastle.jce.provider.** { *; }
-dontwarn javax.naming.**
-keepclasseswithmembers class org.matrix.TEESimulator.App {
public static void main(java.lang.String[]);
}