Search found 23 matches

by taojingGino
2022年 Nov 11日 17:20
Forum: App开发
Topic: 【TUYA SDK集成八十一难】M1芯片的电脑编译iOS报错Undefined symbols for architecture arm64
Replies: 0
Views: 525

【TUYA SDK集成八十一难】M1芯片的电脑编译iOS报错Undefined symbols for architecture arm64

问题: 在M1芯片的电脑上集成SDK,Xcode编译,报错 Undefined symbols for architecture arm64: " OBJC_CLASS $ TYAudioEngine", referenced from: objc-class-ref in TuyaSpeechKit(TuyaSpeechVADetector.o) " OBJC_CLASS $ TuyaSceneIntent", referenced from: objc-class-ref in TYSiriShortcutModule(TYSceneShortcu...
by taojingGino
2022年 Nov 4日 16:36
Forum: App开发
Topic: 【TUYA SDK集成八十一难】iOS审核被拒,提示app里包含App Tracking Transparency权限问题
Replies: 1
Views: 318

【TUYA SDK集成八十一难】iOS审核被拒,提示app里包含App Tracking Transparency权限问题

问题: 引用UI业务包开发,提审后被拒,被拒理由如下 Guideline 2.5.1 - Performance - Software Requirements We noticed your app's binary contains references to App Tracking Transparency, but you have indicated you do not intend to ask users for permission to track at this time. Since App Tracking Transparency is only intende...
by taojingGino
2022年 Oct 14日 17:34
Forum: App开发
Topic: 【TUYA SDK集成八十一难】设备控制面板顶部出现Loading from pre-bundled file...的Loading如何去除
Replies: 0
Views: 386

【TUYA SDK集成八十一难】设备控制面板顶部出现Loading from pre-bundled file...的Loading如何去除

123456.png 现象 :集成设备控制UI业务包,设备控制面板顶部出现 Loading from pre-bundled file... 黑色的Loading界面 解决方法 : 通过手动调用react代码的形式解决问题。 1 、引入头文件 #import <React/RCTDevLoadingView.h> 2 、关闭开发loading [RCTDevLoadingView setEnabled:NO]; 原理 :这个Loading其实是React框架在debug模式下的加载提示,在发布release版本以后其实是不会出现的,如果想手动关闭就可以调用React的方法把loading禁用即可