java - Android Support Library v17 -
i downloaded eclipse 4.4 luna , installed latest adt 20 on it. now, new templates new android project included. 1 of them "android tv activity".
the existing code uses android support library v17!!
import android.content.context; import android.graphics.bitmap; import android.graphics.drawable.bitmapdrawable; import android.graphics.drawable.drawable; import android.support.v17.leanback.widget.imagecardview; import android.support.v17.leanback.widget.presenter; import android.util.log; import android.view.view; import android.view.viewgroup;
but cannot find new support library v17 anywhere! i've searched d.android.com, , still cannot find it. can find it?
the leanback library available in support repository. if you're using gradle can using:
compile "com.android.support:leanback-v17:+"
you can install support repository package via sdk manager, , can see gradle pulls dependency @ <sdk root>/extras/android/m2repository/com/android/support/leanback-v17/21.0.0-rc1
. however, haven't used eclipse android development ages i'm unaware if supports aar libraries.
Comments
Post a Comment