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

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

Issue 29678581: Issue 6000 - Rename "libadblockplus-android" (Closed)
Patch Set: addressed comments Created Jan. 29, 2018, 11:04 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.library'
2
3 android {
4 compileSdkVersion 21
5 buildToolsVersion "25.0.0"
6
7 defaultConfig {
8 minSdkVersion 21
9 targetSdkVersion 21
10 versionCode 4
11 versionName "2.1"
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(path: ":libadblockplus-android", configuration: getAbiFlavor() + "Debug")
25 }
26 }
27 }
28 }
29 }
30
31 dependencies {
32 debugCompile project("path": ':libadblockplus-android', "configuration": getAb iFlavor() + "Debug")
33 releaseCompile project("path": ':libadblockplus-android', "configuration": get AbiFlavor() + "Release")
34 }
OLDNEW

Powered by Google App Engine
This is Rietveld