| Index: adblock-android-webview/build.gradle |
| =================================================================== |
| --- a/adblock-android-webview/build.gradle |
| +++ b/adblock-android-webview/build.gradle |
| @@ -1,19 +1,18 @@ |
| apply plugin: 'com.android.library' |
| +apply plugin: 'com.novoda.bintray-release' |
| android { |
| compileSdkVersion 21 |
| buildToolsVersion "25.0.0" |
| defaultConfig { |
| minSdkVersion 21 |
| targetSdkVersion 21 |
| - versionCode 6 |
| - versionName "2.3" |
| } |
| sourceSets { |
| main { |
| manifest.srcFile 'AndroidManifest.xml' |
| java.srcDirs = ['src'] |
| resources.srcDirs = ['src'] |
| res.srcDirs = ['res'] |
| @@ -27,8 +26,20 @@ |
| } |
| } |
| } |
| dependencies { |
| debugCompile project("path": ':adblock-android', "configuration": getAbiFlavor() + "Debug") |
| releaseCompile project("path": ':adblock-android', "configuration": getAbiFlavor() + "Release") |
| } |
| + |
| +publish { |
| + userOrg = rootProject.ext.bintrayUserOrg |
| + groupId = rootProject.ext.bintrayGroupId |
| + artifactId = 'adblock-android-webview' |
| + publishVersion = '2.3' |
| + licences = rootProject.ext.bintrayLicences |
| + desc = 'An Android library that provides a WebView component with Adblock Plus integrated.' |
| + website = rootProject.ext.bintrayWebsite |
| + issueTracker = rootProject.ext.bintrayIssueTracker |
| + repository = rootProject.ext.bintrayRepository |
| +} |