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

Side by Side Diff: adblock-android-settings/build.gradle

Issue 29883555: Issue 6958 - Lower minSdk required for -settings module (Closed)
Patch Set: Created Sept. 17, 2018, 6:50 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « adblock-android-settings/AndroidManifest.xml ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 16
10 targetSdkVersion 21 10 targetSdkVersion 21
11 missingDimensionStrategy 'abi', 'abi_all', 'abi_arm', 'abi_x86' 11 missingDimensionStrategy 'abi', 'abi_all', 'abi_arm', 'abi_x86'
12 } 12 }
13 13
14 sourceSets { 14 sourceSets {
15 main { 15 main {
16 manifest.srcFile 'AndroidManifest.xml' 16 manifest.srcFile 'AndroidManifest.xml'
17 java.srcDirs = ['src'] 17 java.srcDirs = ['src']
18 resources.srcDirs = ['src'] 18 resources.srcDirs = ['src']
19 res.srcDirs = ['res'] 19 res.srcDirs = ['res']
20 assets.srcDirs = ['assets'] 20 assets.srcDirs = ['assets']
21 } 21 }
22 } 22 }
23 } 23 }
24 24
25 dependencies { 25 dependencies {
26 api project(':adblock-android') 26 api project(':adblock-android')
27 implementation 'com.android.support:support-v4:21.0.3' 27 implementation 'com.android.support:support-v4:21.0.3'
28 } 28 }
29 29
30 publish { 30 publish {
31 userOrg = rootProject.ext.bintrayUserOrg 31 userOrg = rootProject.ext.bintrayUserOrg
32 groupId = rootProject.ext.bintrayGroupId 32 groupId = rootProject.ext.bintrayGroupId
33 artifactId = 'adblock-android-settings' 33 artifactId = 'adblock-android-settings'
34 publishVersion = '3.0' 34 publishVersion = '3.1'
35 licences = rootProject.ext.bintrayLicences 35 licences = rootProject.ext.bintrayLicences
36 desc = 'An Android library that provides a configuration interface for Adblo ck Plus.' 36 desc = 'An Android library that provides a configuration interface for Adblo ck Plus.'
37 website = rootProject.ext.bintrayWebsite 37 website = rootProject.ext.bintrayWebsite
38 issueTracker = rootProject.ext.bintrayIssueTracker 38 issueTracker = rootProject.ext.bintrayIssueTracker
39 repository = rootProject.ext.bintrayRepository 39 repository = rootProject.ext.bintrayRepository
40 } 40 }
OLDNEW
« no previous file with comments | « adblock-android-settings/AndroidManifest.xml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld