| OLD | NEW | 
|   1 apply plugin: 'com.android.application' |   1 apply plugin: 'com.android.application' | 
|   2  |   2  | 
|   3 allprojects { |   3 allprojects { | 
|   4   repositories { |   4   repositories { | 
|   5     mavenLocal() |   5     mavenLocal() | 
|   6     mavenCentral() |   6     mavenCentral() | 
|   7   } |   7   } | 
|   8 } |   8 } | 
|   9  |   9  | 
|  10 repositories { |  10 repositories { | 
|  11   mavenLocal() |  11   mavenLocal() | 
|  12   mavenCentral() |  12   mavenCentral() | 
|  13 } |  13 } | 
|  14  |  14  | 
|  15 android { |  15 android { | 
|  16   compileSdkVersion 16 |  16   compileSdkVersion 16 | 
|  17   buildToolsVersion "24.0.1" |  17   buildToolsVersion "25.0.0" | 
|  18  |  18  | 
|  19   defaultConfig { |  19   defaultConfig { | 
|  20     applicationId "org.adblockplus.libadblockplus.tests" |  20     applicationId "org.adblockplus.libadblockplus.tests" | 
|  21     minSdkVersion 9 |  21     minSdkVersion 9 | 
|  22     targetSdkVersion 16 |  22     targetSdkVersion 16 | 
|  23     versionCode 1 |  23     versionCode 1 | 
|  24     versionName "1.0" |  24     versionName "1.0" | 
|  25   } |  25   } | 
|  26  |  26  | 
|  27   sourceSets { |  27   sourceSets { | 
| (...skipping 11 matching lines...) Expand all  Loading... | 
|  39         } |  39         } | 
|  40       } |  40       } | 
|  41     } |  41     } | 
|  42   } |  42   } | 
|  43 } |  43 } | 
|  44  |  44  | 
|  45 dependencies { |  45 dependencies { | 
|  46   androidTestCompile project(':libadblockplus-android') |  46   androidTestCompile project(':libadblockplus-android') | 
|  47   androidTestCompile fileTree(include: ['*.jar'], dir: 'libs') |  47   androidTestCompile fileTree(include: ['*.jar'], dir: 'libs') | 
|  48 } |  48 } | 
| OLD | NEW |