 Issue 29351744:
  Issue 4399 - Add WebView inheritor with ad blocking  (Closed)
    
  
    Issue 29351744:
  Issue 4399 - Add WebView inheritor with ad blocking  (Closed) 
  | Left: | ||
| Right: | 
| OLD | NEW | 
|---|---|
| (Empty) | |
| 1 apply plugin: 'com.android.library' | |
| 2 | |
| 3 android { | |
| 4 compileSdkVersion 21 | |
| 5 buildToolsVersion "24.0.1" | |
| 6 | |
| 7 defaultConfig { | |
| 8 minSdkVersion 17 | |
| 9 targetSdkVersion 21 | |
| 10 versionCode 1 | |
| 11 versionName "1.0" | |
| 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 ":libadblockplus-android" | |
| 25 } | |
| 26 } | |
| 27 } | |
| 28 } | |
| 29 } | |
| 30 | |
| 31 dependencies { | |
| 32 compile project(':libadblockplus-android') | |
| 33 } | |
| OLD | NEW |