Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Build a Simple Android App with Java Getting Started with Android Creating the Fun Facts Project

Max Bardus
Max Bardus
11,794 Points

What is backwards compatibility stands for?

Watched video several times but did't really understand it.

1 Answer

Backwards compatibility means your App is compatible with older versions of Android (lower SDK).

Let's say your app is targeting a high SDK version (ex: Marshmellow). Some functions, objects .. etc aren't supported in lower SDK version (ex: KitKat), cause it was added newly in higher SDKS or was changed in the higher SDKS, so we use appcompat library for example to make it backwards compatible on KitKat.