| OLD | NEW |
| (Empty) |
| 1 apply plugin: 'com.android.library' | |
| 2 | |
| 3 android { | |
| 4 compileSdkVersion 21 | |
| 5 buildToolsVersion "25.0.0" | |
| 6 | |
| 7 defaultConfig { | |
| 8 minSdkVersion 21 | |
| 9 targetSdkVersion 21 | |
| 10 versionCode 4 | |
| 11 versionName "2.1" | |
| 12 } | |
| 13 | |
| 14 sourceSets { | |
| 15 main { | |
| 16 manifest.srcFile 'AndroidManifest.xml' | |
| 17 java.srcDirs = ['src'] | |
| 18 resources.srcDirs = ['src'] | |
| 19 res.srcDirs = ['res'] | |
| 20 assets.srcDirs = ['assets'] | |
| 21 | |
| 22 jni { | |
| 23 dependencies { | |
| 24 project(path: ":libadblockplus-android", configuration: getAbiFlavor()
+ "Debug") | |
| 25 } | |
| 26 } | |
| 27 } | |
| 28 } | |
| 29 } | |
| 30 | |
| 31 dependencies { | |
| 32 debugCompile project("path": ':libadblockplus-android', "configuration": getAb
iFlavor() + "Debug") | |
| 33 releaseCompile project("path": ':libadblockplus-android', "configuration": get
AbiFlavor() + "Release") | |
| 34 } | |
| OLD | NEW |