fangfengrui

Results 4 comments of fangfengrui

请问这个问题有优化吗?还是说只能增加关键帧的数量?

I also encountered a similar problem. When I changed the original gradle script to kts

我改了之后跑起来了,但是有bug,没做适配啥的

```java buildscript { repositories { mavenCentral() // 添加 Maven Central 仓库 } dependencies { classpath("com.github.megatronking.stringfog:gradle-plugin:5.2.0") // StringFog 插件依赖 classpath("com.github.megatronking.stringfog:xor:5.0.0") // StringFog 默认的 XOR 加解密算法库依赖 } } ``` 上面直接粘到project的build.gradle.kts,下面的在app的build.gradle.kts ```java plugins...