Closed mystikxkemix closed 4 years ago
Unity 2019.3.11f does not compile current amplitude plugin. GetUnityTargetName is deprecated.
@mystikxkemix @Ilya-d Thank you for all the info! Actually the change should be
#if UNITY_2019_3_OR_NEWER
var targetGuid = proj.GetUnityFrameworkTargetGuid();
#else
var targetGuid = proj.TargetGuidByName(PBXProject.GetUnityTargetName());
#endif
Hi,
On Unity 2019.3, all the frameworks are linked to the new target
UnityFramework
. However, your PostProcess script change flags forUnity-iPhone
target.You need to change this line:
var targetGuid = proj.TargetGuidByName(PBXProject.GetUnityTargetName());
by those:Hope you will fix this soon 🙃