The questioner
The questioner

Reputation: 724

Android emulator timezone WARNING on startup

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

Answers (1)

Vamsi
Vamsi

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

Related Questions