Home | History | Annotate | Download | only in ContentProviderPaging
      1 apply plugin: 'com.android.application'
      2 
      3 android {
      4     compileSdkVersion 26
      5     buildToolsVersion "26.0.1"
      6 
      7     defaultConfig {
      8         applicationId "com.example.android.contentproviderpaging"
      9         minSdkVersion 26
     10         targetSdkVersion 26
     11     }
     12 
     13     buildTypes {
     14         release {
     15             minifyEnabled false
     16             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
     17         }
     18     }
     19 
     20     dependencies {
     21         compile project(':resources')
     22     }
     23 }
     24