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

Side by Side Diff: adblockplussbrowser/build.gradle

Issue 29424711: Issue 4777 - Add support for Gradle build (Closed)
Patch Set: Created April 28, 2017, 2:41 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.application'
2
3 android {
4 compileSdkVersion rootProject.ext.compileSdkVersion
5 buildToolsVersion rootProject.ext.buildToolsVersion
6
7 compileOptions {
8 sourceCompatibility = rootProject.ext.sourceCompatibilityVersion
9 targetCompatibility = rootProject.ext.targetCompatibilityVersion
10 }
11
12 defaultConfig {
13 applicationId "org.adblockplus.adblockplussbrowser"
14 minSdkVersion rootProject.ext.minSdkVersion
15 targetSdkVersion rootProject.ext.targetSdkVersion
16 versionCode 9
17 versionName '1.0.4'
18 }
19
20 sourceSets {
21 main {
22 manifest.srcFile 'AndroidManifest.xml'
23 java.srcDirs = ['src']
24 res.srcDirs = ['res']
25 }
26 }
27
28 buildTypes {
29 release {
30 minifyEnabled true
31 proguardFiles getDefaultProguardFile('proguard-android.txt')
32 lintOptions {
33 disable 'MissingTranslation'
34 }
35 }
36 }
37 }
38
39 dependencies {
40 compile "com.android.support:support-v4:$rootProject.ext.androidSupportLibra ryVersion"
anton 2017/04/29 10:23:25 won't it conflict with existing jar files in 'libs
diegocarloslima 2017/04/29 12:03:21 No, because the libs folder isn't being used by Gr
41 }
OLDNEW

Powered by Google App Engine
This is Rietveld