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

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

Issue 29351744: Issue 4399 - Add WebView inheritor with ad blocking (Closed)
Patch Set: changed packages, now using AdblockEngine (original ABPEngine), improved demo app Created Oct. 25, 2016, 11:20 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.application'
2
3 allprojects {
4 repositories {
5 mavenLocal()
6 mavenCentral()
7 }
8 }
9
10 repositories {
11 mavenLocal()
12 mavenCentral()
13 }
14
15 android {
16 compileSdkVersion 21
17 buildToolsVersion "24.0.1"
18
19 defaultConfig {
20 applicationId "org.adblockplus.libadblockplus.android.webviewapp"
21 minSdkVersion 17
22 targetSdkVersion 21
23 versionCode 1
24 versionName "1.0"
25 }
26
27 sourceSets {
28 main {
29 manifest.srcFile 'AndroidManifest.xml'
30 java.srcDirs = ['src']
31 resources.srcDirs = ['src']
32 res.srcDirs = ['res']
33
34 jni {
35 dependencies {
36 project ":libadblockplus-android"
37 }
38 }
39 }
40 }
41 }
42
43 dependencies {
44 compile project(':libadblockplus-android-webview')
45 }
OLDNEW
« no previous file with comments | « libadblockplus-android-webviewapp/AndroidManifest.xml ('k') | libadblockplus-android-webviewapp/build.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld