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

Unified Diff: libadblockplus-android/build.gradle

Issue 29678581: Issue 6000 - Rename "libadblockplus-android" (Closed)
Patch Set: addressed comments Created Jan. 29, 2018, 11:04 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « libadblockplus-android/AndroidManifest.xml ('k') | libadblockplus-android/jni/Android.mk » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: libadblockplus-android/build.gradle
diff --git a/libadblockplus-android/build.gradle b/libadblockplus-android/build.gradle
deleted file mode 100644
index c8d4c7ebbd78faa42008ea41cf867e9fccab1164..0000000000000000000000000000000000000000
--- a/libadblockplus-android/build.gradle
+++ /dev/null
@@ -1,79 +0,0 @@
-apply plugin: 'com.android.library'
-
-android {
- compileSdkVersion 16
- buildToolsVersion "25.0.0"
-
- defaultConfig {
- minSdkVersion 16
- targetSdkVersion 16
- versionCode 2
- versionName "2.0"
- }
-
- publishNonDefault true
-
- productFlavors {
- abi_arm {
- ndk {
- abiFilters "armeabi-v7a"
- }
-
- externalNativeBuild {
- ndkBuild {
- arguments "APP_ABI=armeabi-v7a"
- }
- }
- }
-
- abi_x86 {
- ndk {
- abiFilters "x86"
- }
-
- externalNativeBuild {
- ndkBuild {
- arguments "APP_ABI=x86"
- }
- }
- }
-
- abi_all {
- ndk {
- abiFilters 'armeabi-v7a', 'x86'
- }
- }
- }
-
- externalNativeBuild {
- ndkBuild {
- path 'jni/Android.mk'
- }
- }
-
- sourceSets {
- main {
- manifest.srcFile 'AndroidManifest.xml'
- java.srcDirs = ['src']
- res.srcDirs = ['res']
- jni.srcDirs = ['jni']
- }
- }
-
- def sharedV8LibFiles = System.getenv('SHARED_V8_LIB_FILENAMES')
- if (sharedV8LibFiles != null) {
- def sharedV8LibFilesSet = []
- def sharedV8LibFilesArray = sharedV8LibFiles.split(' ')
- sharedV8LibFilesArray.each { eachFileName ->
- sharedV8LibFilesSet.add("**/" + eachFileName)
- println "[Configuration] Excluding shared v8 library " + eachFileName + " from AAR"
- }
-
- packagingOptions {
- excludes = sharedV8LibFilesSet
- }
- } else {
- println "[Configuration] No shared v8 libraries excluded from AAR"
- }
-
-}
« no previous file with comments | « libadblockplus-android/AndroidManifest.xml ('k') | libadblockplus-android/jni/Android.mk » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld