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

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

Issue 29379647: Issue 4948 - add possibility to not send data depending on connection properties (Closed)
Patch Set: migrated from FilterEngine* to FilterEnginePtr*, minor improvements Created March 15, 2017, 12:48 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
1 apply plugin: 'com.android.library' 1 apply plugin: 'com.android.library'
2 2
3 android { 3 android {
4 compileSdkVersion 16 4 compileSdkVersion 16
5 buildToolsVersion "24.0.1" 5 buildToolsVersion '25.0.0'
sergei 2017/03/15 13:41:48 I don't know you policies but should not it be in
6 6
7 defaultConfig { 7 defaultConfig {
8 minSdkVersion 9 8 minSdkVersion 9
9 targetSdkVersion 16 9 targetSdkVersion 16
10 versionCode 1 10 versionCode 1
11 versionName "1.0" 11 versionName "1.0"
12 12
13 ndk { 13 ndk {
14 abiFilters 'armeabi-v7a', 'x86' 14 abiFilters 'armeabi-v7a', 'x86'
15 } 15 }
16 } 16 }
17 17
18 externalNativeBuild { 18 externalNativeBuild {
19 ndkBuild { 19 ndkBuild {
20 path 'jni/Android.mk' 20 path 'jni/Android.mk'
21 } 21 }
22 } 22 }
23 23
24 sourceSets { 24 sourceSets {
25 main { 25 main {
26 manifest.srcFile 'AndroidManifest.xml' 26 manifest.srcFile 'AndroidManifest.xml'
27 java.srcDirs = ['src'] 27 java.srcDirs = ['src']
28 res.srcDirs = ['res'] 28 res.srcDirs = ['res']
29 jni.srcDirs = ['jni'] 29 jni.srcDirs = ['jni']
30 } 30 }
31 } 31 }
32 } 32 }
OLDNEW

Powered by Google App Engine
This is Rietveld