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