天天看點

android通路位置資訊權限

private bool m_locationEnabled = true;
        public bool LocationEnabled
        {
            get
            {
                if (Application.platform == RuntimePlatform.Android || Application.platform == RuntimePlatform.IPhonePlayer)
                {
                    Debug.LogError("LocationEnabled mobile=" + Input.location.isEnabledByUser);
                    return Input.location.isEnabledByUser;
                }
                return m_locationEnabled;
            }
            set
            {
                Debug.LogError("LocationEnabled=" + value);
                m_locationEnabled = value;
            }
        }
           

隻要這段代碼,build成apk之後:

android通路位置資訊權限
android通路位置資訊權限

低精度:https://docs.unity3d.com/ScriptReference/LocationService.Start.html