blob: 0ef81ed7996794fa63c9570415690f751e5bfea6 [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import android.support.LibraryGroups
import android.support.LibraryVersions
import android.support.SupportLibraryExtension
import static android.support.dependencies.DependenciesKt.*
plugins {
id("SupportAndroidLibraryPlugin")
}
android {
buildTypes {
release {
proguardFiles 'proguard-rules.pro'
}
}
packagingOptions {
// This is needed due to a compatibility issue with espresso_core and play_services_base
// Being resolved by GMSCore in b/64815250
pickFirst 'protobuf.meta'
}
}
dependencies {
api(project(":work:work-runtime"))
api(PLAY_SERVICES, libs.support_exclude_config)
api(FIREBASE_JOBDISPATCHER, libs.support_exclude_config)
// Tempory workaround to the fact that FIREBASE_JOBDISPATCHER imports v4 of 25.0.0, but we pull
// in 26.1.0 on some of the dependencies of v4, but not support-media-compat.
implementation(SUPPORT_V4, libs.support_exclude_config)
androidTestImplementation(project(":work:work-runtime"))
androidTestImplementation(TEST_RUNNER)
androidTestImplementation(ESPRESSO_CORE)
androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
}
supportLibrary {
name = "Android WorkManager Firebase"
publish = true
mavenVersion = LibraryVersions.WORKMANAGER
mavenGroup = LibraryGroups.WORKMANAGER
inceptionYear = "2017"
description = "Android WorkManager Firebase"
url = SupportLibraryExtension.ARCHITECTURE_URL
}