Merge pull request #28146 from volzhs/unique_id_android
Fix get_unique_id() on Android
This commit is contained in:
commit
2dee231c8e
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue