Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have been making a project on Android 4.0 and I have faced some deprecated types for the newer versions of Android. A black line has occured on the name of the deprecated things. However, in spite of the black line and the deprecation warnings, I can still use those deprecated classes and project is running successfully. I got confused about the deprecation. If they are deprecated how can I still use them and what does deprecation mean exactly? If I use the deprecated classes in my project, what can be the possible disadvantages that the project users can encounter?

Thanks for reading.

share|improve this question

4 Answers

up vote 5 down vote accepted

Deprecated means that they are likely to be removed in a future version of the platform and so you should begin looking at replacing their use in your code.

If they just removed the types then builds would break and people wouldn't be happy!

In terms of the effect they will have on your application's users, there shouldn't be any effects at all. However, when you come to update your software to the next version of Android you may find that the deprecated types are no longer there and your build will break.

Wikipedia has a good article on it here: http://en.wikipedia.org/wiki/Deprecation

share|improve this answer
And it means I must revise my Android knowledge I have had before for the future of my project. Thanks Nick. – Emrullah Kızıltepe Mar 1 '12 at 13:14

often some types of classes are deprecated but you can still continue using them because to update applications and implement those classes you would have to modify the source code.

But if you find that there are unused classes is better than in coming soon applications no longer use them, personally I spend it with ClipboardManager and use applications where previously it still works.

share|improve this answer

Thanks for your answers. There is one thing I couldn't understand. Assume I use a deprecated class in my project based on android 3.0. After a while, android 5.0 is launched exactly without support of those deprecated classes. In this case, will I be able to run my application on android 5.0 devices? I mean, I don't try to upgrade my application to the 5.0 since I have to change my source code, I just wonder about whether 5.0 devices can use my application.

share|improve this answer
I've updated my answer – Jla Mar 7 '12 at 15:06

Don't forget that there is probably a reason for these classes to be deprecated. It might affect the security or stability of your app. If you find out there is a bug or a flaw it will probably never be corrected.

Also checkout what classes they advise to use instead, if any.

Concerning your worries about newer Android versions:

Android versions are backward compatible

Confirmed here by an Android engineer in a topic about an other deprecated class. Therefore you should be able to use your app on newer versions.

If you want your application to be compatible with older versions of android while using a "new" class in your code, check this related topic.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.