我正在尝试在我的 android 项目中使用 ImageKit。
val res = imageRenderAPI.doInit(sourcePath, getAuthJson())
每当我像上面的代码一样调用 doInit 方法时,它总是抛出错误代码35 ,根据文档将其转换为 ERROR_DOINIT 。
我的 XML 文件如下:
<?xml version="1.0" encoding="utf-8"?>
<Root screenWidth="1080">
<Image x="1080" y="1920" src="background.png"></Image>
<Image w="481" h="432" x="481" y="120" pivotX="500" pivotY="80" rotationX="50" rotationY="50" src="human.png" >
<PositionAnimation>
<Position x="0" y="0" time="0"/>
<Position x="500" y="0" time="1000"/>
</PositionAnimation>
<RotationAnimation >
<Rotation angle="0" time="0"/>
<Rotation angle="360" time="6000"/>
</RotationAnimation>
</Image>
</Root>
关于 authJson 的参数,我完全按照我从我的 app/agconnect-services.json 中获得的 appId、authApiKey、clientSecret 和 clientId 的内容,除了我不确定要输入什么值的项目 id,我已经尝试使用 agconnect-services.json 中的 cp_id 和 product_id 作为 projectId,也给出了相同的错误。而且我在这里不使用任何令牌,因为文档Image Kit Documentation说令牌是可选的。我无法弄清楚哪一部分是错误的,感谢您的帮助。