This repository has been archived by the owner on Nov 1, 2022. It is now read-only.
Permalink
Cannot retrieve contributors at this time
18 lines (16 sloc)
783 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
android-components/buildSrc/src/main/java/Config.kt
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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/. */ | |
// Synchronized library configuration for all modules | |
// This "componentsVersion" number is defined in ".buildconfig.yml" and should follow | |
// semantic versioning (MAJOR.MINOR.PATCH). See https://semver.org/ | |
class Config(val componentsVersion: String) { | |
companion object { | |
// Maven group ID used for all components | |
const val componentsGroupId = "org.mozilla.components" | |
// Synchronized build configuration for all modules | |
const val compileSdkVersion = 29 | |
const val minSdkVersion = 21 | |
const val targetSdkVersion = 29 | |
} | |
} |