Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: adblock-android-webview/build.gradle

Issue 29784577: Issue 6205 - Upload artifacs to maven repository (Closed)
Patch Set: Adjustments regarding comments Created July 10, 2018, 12:39 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « adblock-android-tests/build.gradle ('k') | adblock-android-webviewapp/build.gradle » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: adblock-android-webview/build.gradle
===================================================================
--- a/adblock-android-webview/build.gradle
+++ b/adblock-android-webview/build.gradle
@@ -1,34 +1,39 @@
apply plugin: 'com.android.library'
+apply plugin: 'com.novoda.bintray-release'
android {
compileSdkVersion 21
- buildToolsVersion "25.0.0"
+ buildToolsVersion "27.0.3"
defaultConfig {
minSdkVersion 21
targetSdkVersion 21
- versionCode 7
- versionName "3.0"
+ missingDimensionStrategy 'abi', 'abi_all', 'abi_arm', 'abi_x86'
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
-
- jni {
- dependencies {
- project(path: ":adblock-android", configuration: getAbiFlavor() + "Debug")
- }
- }
}
}
}
dependencies {
- debugCompile project("path": ':adblock-android', "configuration": getAbiFlavor() + "Debug")
- releaseCompile project("path": ':adblock-android', "configuration": getAbiFlavor() + "Release")
+ api project(':adblock-android')
}
+
+publish {
+ userOrg = rootProject.ext.bintrayUserOrg
+ groupId = rootProject.ext.bintrayGroupId
+ artifactId = 'adblock-android-webview'
+ publishVersion = '3.0'
+ 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
+}
« no previous file with comments | « adblock-android-tests/build.gradle ('k') | adblock-android-webviewapp/build.gradle » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld