android - Support Library Froyo to Lollipop -
how, , need implement support-libraries in order app working on older android-versions.
need implement app running on lollipop on froyo?
before starting make sure have android support library , android support repository downloaded on sdk manager.
eclipse
- create directory named libs/ in root of project directory.
- copy jar file sdk installation libs/ folder.
- in eclipse right click jar , choose build path > add build path.
android studio
- open build.gradle file in application module. (usually named app).
- in dependencies part add following line:
compile 'com.android.support:appcompat-v7:22.0.0'
- finally gradle sync
Comments
Post a Comment