| OLD | NEW | 
| (Empty) |  | 
 |   1 apply plugin: 'com.android.application' | 
 |   2  | 
 |   3 android { | 
 |   4     compileSdkVersion rootProject.ext.compileSdkVersion | 
 |   5     buildToolsVersion rootProject.ext.buildToolsVersion | 
 |   6  | 
 |   7     compileOptions { | 
 |   8         sourceCompatibility = rootProject.ext.sourceCompatibilityVersion | 
 |   9         targetCompatibility = rootProject.ext.targetCompatibilityVersion | 
 |  10     } | 
 |  11  | 
 |  12     defaultConfig { | 
 |  13         applicationId "org.adblockplus.adblockplussbrowser" | 
 |  14         minSdkVersion rootProject.ext.minSdkVersion | 
 |  15         targetSdkVersion rootProject.ext.targetSdkVersion | 
 |  16         versionCode 9 | 
 |  17         versionName '1.0.4' | 
 |  18     } | 
 |  19  | 
 |  20     sourceSets { | 
 |  21         main { | 
 |  22             manifest.srcFile 'AndroidManifest.xml' | 
 |  23             java.srcDirs = ['src'] | 
 |  24             res.srcDirs = ['res'] | 
 |  25         } | 
 |  26     } | 
 |  27  | 
 |  28     buildTypes { | 
 |  29         release { | 
 |  30             minifyEnabled true | 
 |  31             proguardFiles getDefaultProguardFile('proguard-android.txt') | 
 |  32             lintOptions { | 
 |  33                 disable 'MissingTranslation' | 
 |  34             } | 
 |  35         } | 
 |  36     } | 
 |  37 } | 
 |  38  | 
 |  39 dependencies { | 
 |  40     compile "com.android.support:support-v4:$rootProject.ext.androidSupportLibra
    ryVersion" | 
 |  41 } | 
| OLD | NEW |