Unity5.4.0p4 compile error for android by il2cpp

hello everyone.

I upgrade my project from Unity5.3.6f1 to Unity5.4.0f3 for building Android by il2cpp.

But I get the error :frowning:

So I try to change use Unity5.4.0p4 to build…
it was error again, and I don’t know the error log mean…

Have anybody can tell my what the error log mean ?

Thanks a lot.

error log:
[77668-errorlog.txt|77668]

ok guys,
I find what i miss in my code.

I see the answer : Android IL2CPP compile error for Unity 5.4.0f3 - Questions & Answers - Unity Discussions

And I Check my Code… I find some where I add more define in my code like this…

#define SA_DEBUG_MODE

//....blablabla....

#if (UNITY_IPHONE && !UNITY_EDITOR) || SA_DEBUG_MODE
	[DllImport ("__Internal")]
	private static extern void _MNP_ShowRateUsPopUp(string title, string message, string rate, string remind, string declined);

the define SA_DEBUG_MODE make me have have error when i build Android by il2cpp…Orz

I take it out and anything be Done!! :slight_smile:

Thanks Unity Answer.