Home | History | Annotate | Download | only in app
      1 apply plugin: 'com.android.application'
      2 
      3 android {
      4     compileSdkVersion 21
      5     buildToolsVersion "21.0.0"
      6 
      7     defaultConfig {
      8         applicationId "com.example.android.sampletvinput"
      9         minSdkVersion 21
     10         targetSdkVersion 21
     11         versionCode 1
     12         versionName "1.0"
     13     }
     14 
     15     buildTypes {
     16         release {
     17             minifyEnabled false
     18             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
     19         }
     20     }
     21 }
     22 
     23 dependencies {
     24     compile fileTree(dir: 'libs', include: ['*.jar'])
     25     compile 'com.android.support:recyclerview-v7:21.0.0'
     26     compile 'com.android.support:leanback-v17:21.0.0'
     27     compile 'com.android.support:appcompat-v7:21.0.0'
     28     compile 'com.squareup.picasso:picasso:2.3.2'
     29 }
     30