| OLD | NEW |
| 1 apply plugin: 'com.android.library' | 1 apply plugin: 'com.android.library' |
| 2 apply plugin: 'com.novoda.bintray-release' | 2 apply plugin: 'com.novoda.bintray-release' |
| 3 | 3 |
| 4 android { | 4 android { |
| 5 compileSdkVersion 21 | 5 compileSdkVersion 21 |
| 6 buildToolsVersion "27.0.3" | 6 buildToolsVersion "27.0.3" |
| 7 | 7 |
| 8 defaultConfig { | 8 defaultConfig { |
| 9 minSdkVersion 21 | 9 minSdkVersion 21 |
| 10 targetSdkVersion 21 | 10 targetSdkVersion 21 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 } | 23 } |
| 24 | 24 |
| 25 dependencies { | 25 dependencies { |
| 26 api project(':adblock-android') | 26 api project(':adblock-android') |
| 27 } | 27 } |
| 28 | 28 |
| 29 publish { | 29 publish { |
| 30 userOrg = rootProject.ext.bintrayUserOrg | 30 userOrg = rootProject.ext.bintrayUserOrg |
| 31 groupId = rootProject.ext.bintrayGroupId | 31 groupId = rootProject.ext.bintrayGroupId |
| 32 artifactId = 'adblock-android-webview' | 32 artifactId = 'adblock-android-webview' |
| 33 publishVersion = '3.0' | 33 publishVersion = '3.1' |
| 34 licences = rootProject.ext.bintrayLicences | 34 licences = rootProject.ext.bintrayLicences |
| 35 desc = 'An Android library that provides a WebView component with Adblock Plus
integrated.' | 35 desc = 'An Android library that provides a WebView component with Adblock Plus
integrated.' |
| 36 website = rootProject.ext.bintrayWebsite | 36 website = rootProject.ext.bintrayWebsite |
| 37 issueTracker = rootProject.ext.bintrayIssueTracker | 37 issueTracker = rootProject.ext.bintrayIssueTracker |
| 38 repository = rootProject.ext.bintrayRepository | 38 repository = rootProject.ext.bintrayRepository |
| 39 } | 39 } |
| OLD | NEW |