| OLD | NEW |
| 1 apply plugin: 'com.android.application' | 1 apply plugin: 'com.android.application' |
| 2 | 2 |
| 3 android { | 3 android { |
| 4 compileSdkVersion 23 | 4 compileSdkVersion 23 |
| 5 buildToolsVersion "23.0.0" | 5 buildToolsVersion "23.0.0" |
| 6 | 6 |
| 7 defaultConfig { | 7 defaultConfig { |
| 8 applicationId "com.google.fletch.githubmock" | 8 applicationId "com.google.dartino.githubmock" |
| 9 minSdkVersion 22 | 9 minSdkVersion 22 |
| 10 targetSdkVersion 23 | 10 targetSdkVersion 23 |
| 11 versionCode 1 | 11 versionCode 1 |
| 12 versionName "1.0" | 12 versionName "1.0" |
| 13 } | 13 } |
| 14 buildTypes { | 14 buildTypes { |
| 15 release { | 15 release { |
| 16 minifyEnabled false | 16 minifyEnabled false |
| 17 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'progu
ard-rules.pro' | 17 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'progu
ard-rules.pro' |
| 18 } | 18 } |
| 19 } | 19 } |
| 20 } | 20 } |
| 21 | 21 |
| 22 dependencies { | 22 dependencies { |
| 23 compile fileTree(include: ['*.jar'], dir: 'libs') | 23 compile fileTree(include: ['*.jar'], dir: 'libs') |
| 24 compile 'com.android.support:support-v4:23.0.0' | 24 compile 'com.android.support:support-v4:23.0.0' |
| 25 } | 25 } |
| OLD | NEW |