summaryrefslogtreecommitdiffstats
path: root/mobile/android/thirdparty/build.gradle
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2019-04-23 15:32:23 -0400
committerMatt A. Tobin <email@mattatobin.com>2019-04-23 15:32:23 -0400
commitabe80cc31d5a40ebed743085011fbcda0c1a9a10 (patch)
treefb3762f06b84745b182af281abb107b95a9fcf01 /mobile/android/thirdparty/build.gradle
parent63295d0087eb58a6eb34cad324c4c53d1b220491 (diff)
downloadUXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar
UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar.gz
UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar.lz
UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar.xz
UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.zip
Issue #1053 - Drop support Android and remove Fennec - Part 1a: Remove mobile/android
Diffstat (limited to 'mobile/android/thirdparty/build.gradle')
-rw-r--r--mobile/android/thirdparty/build.gradle54
1 files changed, 0 insertions, 54 deletions
diff --git a/mobile/android/thirdparty/build.gradle b/mobile/android/thirdparty/build.gradle
deleted file mode 100644
index a192e5009..000000000
--- a/mobile/android/thirdparty/build.gradle
+++ /dev/null
@@ -1,54 +0,0 @@
-buildDir "${topobjdir}/gradle/build/mobile/android/thirdparty"
-
-apply plugin: 'com.android.library'
-
-android {
- compileSdkVersion 23
- buildToolsVersion mozconfig.substs.ANDROID_BUILD_TOOLS_VERSION
-
- defaultConfig {
- targetSdkVersion 23
- minSdkVersion 15
- }
-
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_7
- targetCompatibility JavaVersion.VERSION_1_7
- }
-
- lintOptions {
- abortOnError false
- }
-
- sourceSets {
- main {
- manifest.srcFile 'AndroidManifest.xml'
- java {
- srcDir '.'
-
- if (!mozconfig.substs.MOZ_INSTALL_TRACKING) {
- exclude 'com/adjust/**'
- }
-
- // Exclude LeakCanary: It will be added again via a gradle dependency. This version
- // here is only the no-op library for mach-based builds.
- exclude 'com/squareup/leakcanary/**'
- }
- }
- }
-}
-
-dependencies {
- compile "com.android.support:support-v4:${mozconfig.substs.ANDROID_SUPPORT_LIBRARY_VERSION}"
-}
-
-apply plugin: 'idea'
-
-idea {
- module {
- // This is cosmetic. See the excludes in the root project.
- if (!mozconfig.substs.MOZ_INSTALL_TRACKING) {
- excludeDirs += file('com/adjust/sdk')
- }
- }
-}