Files
android_development/samples/SupportLeanbackShowcase/app/build.gradle
Dake Gu 5bf3eba9dd Showcase: Update SDK to 23 and support lib to 23.0.1
Updated for new API addAsRoot() for GuidedStepFragment.
Rmove the awkward setStep() call,  we can find current GuidedStepFragment
using standard API.

Change-Id: I7ecb108a36ab5d0091c230dd5c5686e3a91f1857
2015-10-01 12:59:41 -07:00

37 lines
1.0 KiB
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 'android-23'
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "android.support.v17.leanback.supportleanbackshowcase"
minSdkVersion 17
targetSdkVersion '23'
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:recyclerview-v7:23.0.1'
compile 'com.android.support:leanback-v17:23.0.1'
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:preference-v7:23.0.1'
compile 'com.android.support:preference-leanback-v17:23.0.1'
compile 'com.android.support:preference-v14:23.0.1'
compile 'com.google.code.gson:gson:1.7.2'
compile 'com.squareup.picasso:picasso:2.3.2'
compile 'com.android.support:palette-v7:23.0.1'
}