Use android.icu.util.Calendar for API >=24 and java.util.Calendar for API <24

2018-03-12T15:10:14

As a new Calendar class was introduced in API 24 in package android.icu.util with more calendars and better localization. I'm wondering if there is a way to use this Calendar for Android API >=24, and old deprecated Calendar from java.util package for Android API <24.

There is a little reason to set minSdkVersion = 24. Also I cannot assign android.icu.util.Calendar to java.util.Calendar field depending on API level. Have anyone solved this? Or just use old calendar and wait untill market drop of old devices?

Copyright License:
Author:「Oleksandr Albul」,Reproduced under the CC 4.0 BY-SA copyright license with link to original source & disclaimer.
Link to:https://stackoverflow.com/questions/49229823/use-android-icu-util-calendar-for-api-24-and-java-util-calendar-for-api-24

About “Use android.icu.util.Calendar for API >=24 and java.util.Calendar for API <24” questions

As a new Calendar class was introduced in API 24 in package android.icu.util with more calendars and better localization. I'm wondering if there is a way to use this Calendar for Android API >=24, ...
I am making a simple alarm app. Wherever I am using Calendar class it's showing an error same as title. Calendar calendar = Calendar.getInstance(); calendar.setTimeInMillis(System.currentTimeMilli...
I'm testing just a sample of code in order to implement in other app, but I have got an error saying that the minimum API required in order to use getInstance() is 24, and I'm current using API 16....
Is there any known limitation/restriction on using JavaScript Use-API? Reading adobe documentation (links below) there is no comparison between the two technologies. Do you know something that c...
I made a taxi booking project that uses google maps api to locate cabs, pickup and drop locations. The problem is when I request a ride the following error occurs: This API project is not authori...
I've always use JS framework coupled with a PHP backend on the same server (website in php who use a JS framework like react/vue/angular). I know how call an API function with axios (from JS to my ...
People generally say they use API documentation and code. I'm relatively okay in JAVA language,meaning I can write simple programs. Recently for the project am working on, I'm asked to work on SOA...
I've been given an online API (just a website that hosts multiple functions and an API to use them. How do I use it? There's no jar file to implement or any other help. All I have is the site with ...
Recently, Google allowed developers to use Fingerprint API in Android 6.0 (API 23). I have an android project with compiledSdkVersion 23 and minSdkVersion 17. My question is: Can i use Fingerprin...
I want to use this api https://vpic.nhtsa.dot.gov/api/ on flutter can someone give me an example of how to use it thanks

Copyright License:Reproduced under the CC 4.0 BY-SA copyright license with link to original source & disclaimer.