Left: | ||
Right: |
LEFT | RIGHT |
---|---|
(no file at all) | |
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 "25.0.0" | 5 buildToolsVersion "25.0.0" |
6 | 6 |
7 defaultConfig { | 7 defaultConfig { |
8 minSdkVersion 11 | 8 minSdkVersion 11 |
9 targetSdkVersion 16 | 9 targetSdkVersion 16 |
10 versionCode 1 | 10 versionCode 1 |
(...skipping 11 matching lines...) Expand all Loading... | |
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 | |
33 def sharedV8LibFiles = System.getenv('SHARED_V8_LIB_FILENAMES') | |
34 if (sharedV8LibFiles != null) { | |
35 def sharedV8LibFilesSet = [] | |
36 def sharedV8LibFilesArray = sharedV8LibFiles.split(' ') | |
37 sharedV8LibFilesArray.each { eachFileName -> | |
38 sharedV8LibFilesSet.add("**/" + eachFileName) | |
39 println "[Configuration] Excluding shared v8 library " + eachFileName + " from AAR" | |
40 } | |
41 | |
42 packagingOptions { | |
43 excludes = sharedV8LibFilesSet | |
diegocarloslima
2017/11/08 13:25:55
I think we weren't in the same page in my last com
anton
2017/11/08 13:28:25
It's equal to what we had before last patch set. I
| |
44 } | |
45 } else { | |
46 println "[Configuration] No shared v8 libraries excluded from AAR" | |
47 } | |
48 | |
32 } | 49 } |
LEFT | RIGHT |