1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

Fix get_unique_id() on Android

This commit is contained in:
volzhs
2019-04-18 08:07:03 +09:00
parent 10c7742df3
commit 5a4b2087a0

View File

@@ -425,7 +425,7 @@ public class Godot extends Activity implements SensorEventListener, IDownloaderC
}
io = new GodotIO(this);
io.unique_id = Secure.ANDROID_ID;
io.unique_id = Secure.getString(getContentResolver(), Secure.ANDROID_ID);
GodotLib.io = io;
mSensorManager = (SensorManager)getSystemService(Context.SENSOR_SERVICE);
mAccelerometer = mSensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);