| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 apply plugin: 'com.android.application' | |
| 2 | |
| 3 allprojects { | |
| 4 repositories { | |
| 5 mavenLocal() | |
| 6 mavenCentral() | |
| 7 } | |
| 8 } | |
| 9 | |
| 10 repositories { | |
| 11 mavenLocal() | |
| 12 mavenCentral() | |
| 13 } | |
| 14 | |
| 15 android { | |
| 16 compileSdkVersion 16 | |
| 17 buildToolsVersion "22.0.1" | |
| 18 | |
| 19 defaultConfig { | |
| 20 applicationId "org.adblockplus.libadblockplus.tests" | |
| 21 minSdkVersion 9 | |
| 22 targetSdkVersion 16 | |
| 23 versionCode 359 | |
| 24 versionName "1.3" | |
|
diegocarloslima
2016/11/03 15:13:23
The same way we changed versionCode and versionNam
anton
2016/11/07 07:05:34
We did not change it yet, it will be changed in an
diegocarloslima
2016/11/07 13:05:06
Acknowledged.
| |
| 25 | |
| 26 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | |
| 27 } | |
| 28 | |
| 29 sourceSets { | |
| 30 main { | |
| 31 manifest.srcFile 'AndroidManifest.xml' | |
| 32 } | |
| 33 | |
| 34 androidTest { | |
| 35 manifest.srcFile 'AndroidManifest.xml' | |
| 36 java.srcDirs = ['src'] | |
| 37 | |
| 38 jni { | |
| 39 dependencies { | |
| 40 project ":libadblockplus-android" | |
| 41 } | |
| 42 } | |
| 43 } | |
| 44 } | |
| 45 } | |
| 46 | |
| 47 dependencies { | |
| 48 androidTestCompile project(':libadblockplus-android') | |
| 49 androidTestCompile fileTree(include: ['*.jar'], dir: 'libs') | |
| 50 } | |
| OLD | NEW |