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

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

Issue 29351744: Issue 4399 - Add WebView inheritor with ad blocking (Closed)
Patch Set: added Maven build configuration files for -webview and -webviewapp modules Created Oct. 5, 2016, 11:19 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
OLDNEW
(Empty)
1 apply plugin: 'com.android.model.library'
2
3 model {
4
5 android {
6 compileSdkVersion 21
7 buildToolsVersion "22.0.1"
8
9 defaultConfig {
10 minSdkVersion.apiLevel 17
11 targetSdkVersion.apiLevel 21
12 versionCode 1
13 versionName "1.0"
14 }
15
16 sources {
17 main {
18 manifest {
19 source {
20 srcDir '.'
21 include 'AndroidManifest.xml'
22 }
23 }
24 java { source { srcDirs = ['src'] } }
25 resources { source { srcDirs = ['src'] } }
26 res { source { srcDirs = ['res'] } }
27 assets { source { srcDirs = ['assets'] } }
28
29 jni {
30 dependencies {
31 project ":libadblockplus-android"
32 }
33 }
34 }
35 }
36 }
37 }
38
39 dependencies {
40 compile project(':libadblockplus-android')
41 }
OLDNEW
« no previous file with comments | « libadblockplus-android-webview/assets/inject.js ('k') | libadblockplus-android-webview/build.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld