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: Adjusting ignored files and updating support lib Created May 3, 2017, 1:43 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
« no previous file with comments | « adblockplussbrowser/AndroidManifest.xml ('k') | adblockplussbrowser/build.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
41 }
OLDNEW
« no previous file with comments | « adblockplussbrowser/AndroidManifest.xml ('k') | adblockplussbrowser/build.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld