You need to enable JavaScript to run this app.
导航

There are both CN URL and global URL exist.

最近更新时间2024.01.08 16:31:20

首次发布时间2022.12.20 10:53:21

问题描述

*** Terminating app due to uncaught exception 'APMInsightURLError', reason: 'There are both CN URL and global URL exist. Please remove one of the subspecs in the CN for Chinese App and the Global for global App.' 

问题原因
没有显式声明subspecs。
解决方案
podfile设置具体的subspecs,如使用 pod 'RangersAPM', '3.0.3',的方式会有该问题。

pod 'RangersAPM', '3.0.3', :subspecs => [
'Crash',
'WatchDog',
xxxx
'CN' #必须引入
]