Hongyu zhuo

Results 3 comments of Hongyu zhuo

我点击的是 `initGetuiSdk`, 没有反应,上面我放了个gif; 我再检查一下是不是 flutter 版本的问题,麻烦有空再帮我看一下,谢谢! 还有,我第一次运行这个 demo 的时候,报了一个错误,然后我在 `android/app/build.gradle`中添加了一行代码: ```gradle android { compileSdkVersion 28 lintOptions { disable 'InvalidPackage' checkReleaseBuilds false

> android.enableR8=false 这个方法无效,我在新拉的这个仓库的 demo 中测的

The error is reported in: ```ts // projects/angular-tree-component/src/lib/models/tree-node.model.ts 70:45 get isRoot(): boolean { return this.parent.data.virtual; } ``` Modify to: ```ts get isRoot(): boolean { return this.parent?.data.virtual; } ```