-
First you select development build for Android.(Build Settings-> Android -> check Develop Build box)
-
Here is the guide from Unity doc: https://docs.unity3d.com/Manual/ProfilerWindow.html
-
Before the 'adb forward' you should check the port(34999) first using:
netstat -a -o -n | find "34999"
-
Kill the process that alreay take the port "34999" using:
taskkill /F /PID process_id
-
adb forward --remove-all
-
adb forward "tcp:34999" "localabstract:Unity-your.package.name
-
Start your app
-
Press Ctrl+7 to start Profile window from Unity Editor.
-
from Unity Profile Window -> Active profiler -> select AndroidPlayer([email protected]:34999)
-
Click the "record" you can get the data
Last active
November 8, 2023 01:43
-
-
Save androidzhibinw/f9e4e990d8bddb516c3e2b7f647a3ed3 to your computer and use it in GitHub Desktop.
Unity profiler for Android
This works! Thanks.
This works for me Thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This resolved exactly what I suffered over several hours. Thanks.