/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ apply plugin: 'com.android.library' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' android { compileSdkVersion 28 defaultConfig { minSdkVersion 21 targetSdkVersion 28 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' consumerProguardFiles 'proguard-rules.pro' } } } androidExtensions { experimental = true } dependencies { implementation Deps.kotlin_stdlib implementation Deps.androidx_annotation implementation Deps.androidx_lifecycle_extensions implementation Deps.androidx_lifecycle_viewmodel_ss implementation Deps.mozilla_support_base implementation Deps.rxAndroid implementation Deps.rxKotlin implementation Deps.autodispose implementation Deps.autodispose_android implementation Deps.autodispose_android_aac }