Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2 Days of troubleshooting bug fix for android. #1

Open
dustinhagen opened this issue May 4, 2020 · 0 comments
Open

2 Days of troubleshooting bug fix for android. #1

dustinhagen opened this issue May 4, 2020 · 0 comments

Comments

@dustinhagen
Copy link

IL2CPP 64 bit android doesnt like the code as is:

[DllImport("__Internal")]
static extern string _Get_Device_id();

needs to be this:

#if UNITY_IPHONE && !UNITY_EDITOR
[DllImport("__Internal")]
static extern string _Get_Device_id();
#endif

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant