↧
Answer by Crystalline
As far as I know on Android you cannot view debug logs. You can always create one manually. var debuglog : GUIText; function OnGUI () { if (GUI.Button(Rect(0,0,128,128),'button')) { debuglog.text =...
View ArticleAnswer by lakeman
You can use adb logcat to view logs on android devices. But the most convenient way is this: https://www.assetstore.unity3d.com/#!/content/44935
View Article