tags:

views:

111

answers:

1

I have the following import in my android class Clock -

import android.pim.DateUtils;

But the compiler is giving me the error -

The import android.pim cannot be resolved.

I am using the Android 2.1-update1 jar.

Please help.

A: 

There is no android.pim package in the Android SDK.

There is an android.text.format.DateUtils class, however.

CommonsWare