Commit 34144fd2 authored by Sebastian Kaspari's avatar Sebastian Kaspari
Browse files

Use pinned Android Components Nightly version instead of snapshots.

parent 4dc26205
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
buildscript {
    repositories {
        maven {
            url "https://snapshots.maven.mozilla.org/maven2"
            url "https://nightly.maven.mozilla.org/maven2"
        }
        maven {
            url "https://maven.mozilla.org/maven2"
+1 −1
Original line number Diff line number Diff line
@@ -89,7 +89,7 @@ class Core(private val context: Context) {
        )
    }

    val sessionStorage: SessionStorage by lazy {
    private val sessionStorage: SessionStorage by lazy {
        SessionStorage(context, engine = engine)
    }

+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ allprojects {
    repositories {
        google()
        maven {
            url "https://snapshots.maven.mozilla.org/maven2"
            url "https://nightly.maven.mozilla.org/maven2"
        }
        maven {
            url "https://maven.mozilla.org/maven2"
+8 −0
Original line number Diff line number Diff line
/* 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/. */

object AndroidComponents {
    const val VERSION = "37.0.20200316130158"
}
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ object Versions {
    const val google_material = "1.1.0"
    const val google_flexbox = "2.0.1"

    const val mozilla_android_components = "37.0.0-SNAPSHOT"
    const val mozilla_android_components = AndroidComponents.VERSION

    const val adjust = "4.18.3"
    const val installreferrer = "1.0"