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

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

Issue 29361445: Issue 4399 - Add WebView inheritor with ad blocking (Closed)
Patch Set: Created Nov. 1, 2016, 12:14 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
(Empty)
1 apply plugin: 'com.android.library'
2
3 android {
4 compileSdkVersion 21
5 buildToolsVersion "24.0.1"
6
7 defaultConfig {
8 minSdkVersion 17
9 targetSdkVersion 21
diegocarloslima 2016/11/08 16:30:38 Same as I commented on AndroidManifest. Couldn't w
10 versionCode 1
11 versionName "1.0"
12 }
13
14 sourceSets {
15 main {
16 manifest.srcFile 'AndroidManifest.xml'
17 java.srcDirs = ['src']
18 resources.srcDirs = ['src']
19 res.srcDirs = ['res']
20 assets.srcDirs = ['assets']
21
22 jni {
23 dependencies {
24 project ":libadblockplus-android"
25 }
26 }
27 }
28 }
29 }
30
31
32
33 dependencies {
34 compile project(':libadblockplus-android')
35 compile 'com.android.support:support-v4:21.0.3'
36 }
OLDNEW

Powered by Google App Engine
This is Rietveld