Reputation: 724
I have this warning hanging on the terminal after the avd command:
emulator: ### WARNING: /etc/localtime does not point to /usr/share/zoneinfo/, can't determine zoneinfo timezone name
So, I wonder if this is a MacOS(10.13.2) or Android Studio(latest version) problem.
And how to tackle this?
Thanks.
Upvotes: 17
Views: 2591
Reputation: 145
Running command below seems to have resolved that warning, note that my timezone is Africa/Johannesburg
, replace it with your own timezone.
sudo ln -sf /usr/share/zoneinfo/Africa/Johannesburg /etc/localtime
Basically /etc/localtime
should be linked your timezone.
Upvotes: 12