| apply plugin: 'com.android.application' |
| |
| android { |
| compileSdkVersion 'android-N' |
| buildToolsVersion "23.0.3" |
| |
| defaultConfig { |
| applicationId "com.example.android.discovery.recommendation" |
| minSdkVersion 'N' |
| targetSdkVersion 'N' |
| versionCode 1 |
| versionName "1.0" |
| } |
| buildTypes { |
| release { |
| minifyEnabled false |
| proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
| } |
| } |
| lintOptions { |
| disable 'AllowBackup', 'GoogleAppIndexingWarning' |
| abortOnError false |
| checkReleaseBuilds true |
| } |
| } |
| |
| dependencies { |
| compile fileTree(dir: 'libs', include: ['*.jar']) |
| compile 'com.android.support:appcompat-v7:23.3.0' |
| compile 'com.android.support:design:23.3.0' |
| } |