| OLD | NEW | 
|   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 16 | 
|   9     targetSdkVersion 16 |   9     targetSdkVersion 16 | 
|  10     versionCode 1 |  10     versionCode 2 | 
|  11     versionName "1.0" |  11     versionName "2.0" | 
|  12   } |  12   } | 
|  13  |  13  | 
|  14   publishNonDefault true |  14   publishNonDefault true | 
|  15  |  15  | 
|  16   productFlavors { |  16   productFlavors { | 
|  17     abi_arm { |  17     abi_arm { | 
|  18       ndk { |  18       ndk { | 
|  19         abiFilters "armeabi-v7a" |  19         abiFilters "armeabi-v7a" | 
|  20       } |  20       } | 
|  21  |  21  | 
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  70     } |  70     } | 
|  71  |  71  | 
|  72     packagingOptions { |  72     packagingOptions { | 
|  73       excludes = sharedV8LibFilesSet |  73       excludes = sharedV8LibFilesSet | 
|  74     } |  74     } | 
|  75   } else { |  75   } else { | 
|  76     println "[Configuration] No shared v8 libraries excluded from AAR" |  76     println "[Configuration] No shared v8 libraries excluded from AAR" | 
|  77   } |  77   } | 
|  78  |  78  | 
|  79 } |  79 } | 
| OLD | NEW |