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" |
- } |
- |
-} |