Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.
Permalink
v43.0.0
Switch branches/tags

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?
Go to file
 
 
Cannot retrieve contributors at this time
18 lines (16 sloc) 783 Bytes
/* 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
}
}