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

Side by Side Diff: libadblockplus-android-webviewapp/build.gradle

Issue 29379647: Issue 4948 - add possibility to not send data depending on connection properties (Closed)
Patch Set: migrated from FilterEngine* to FilterEnginePtr*, minor improvements Created March 15, 2017, 12:48 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 apply plugin: 'com.android.application' 1 apply plugin: 'com.android.application'
2 2
3 allprojects { 3 allprojects {
4 repositories { 4 repositories {
5 mavenLocal() 5 mavenLocal()
6 mavenCentral() 6 mavenCentral()
7 } 7 }
8 } 8 }
9 9
10 repositories { 10 repositories {
11 mavenLocal() 11 mavenLocal()
12 mavenCentral() 12 mavenCentral()
13 } 13 }
14 14
15 android { 15 android {
16 compileSdkVersion 21 16 compileSdkVersion 21
17 buildToolsVersion "24.0.1" 17 buildToolsVersion '25.0.0'
sergei 2017/03/15 13:41:48 I don't know you policies but should not it be in
18 18
19 defaultConfig { 19 defaultConfig {
20 applicationId "org.adblockplus.libadblockplus.android.webviewapp" 20 applicationId "org.adblockplus.libadblockplus.android.webviewapp"
21 minSdkVersion 21 21 minSdkVersion 21
22 targetSdkVersion 21 22 targetSdkVersion 21
23 versionCode 1 23 versionCode 1
24 versionName "1.0" 24 versionName "1.0"
25 } 25 }
26 26
27 sourceSets { 27 sourceSets {
(...skipping 11 matching lines...) Expand all
39 } 39 }
40 } 40 }
41 } 41 }
42 42
43 43
44 dependencies { 44 dependencies {
45 compile project(':libadblockplus-android-settings') 45 compile project(':libadblockplus-android-settings')
46 compile project(':libadblockplus-android-webview') 46 compile project(':libadblockplus-android-webview')
47 compile 'com.android.support:appcompat-v7:21.0.3' 47 compile 'com.android.support:appcompat-v7:21.0.3'
48 } 48 }
OLDNEW

Powered by Google App Engine
This is Rietveld