Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Verified Commit f40df95f authored by Marvin W.'s avatar Marvin W. 🐿️
Browse files

Clone dependency tree from original play-services libraries

parent 412d1f51
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
/*
 * SPDX-FileCopyrightText: 2013, microG Project Team
 * SPDX-FileCopyrightText: 2013 microG Project Team
 * SPDX-License-Identifier: Apache-2.0
 */

@@ -12,11 +12,12 @@ buildscript {
    ext.kotlinVersion = '1.6.10'
    ext.coroutineVersion = '1.5.2'

    ext.annotationVersion = '1.2.0'
    ext.annotationVersion = '1.3.0'
    ext.appcompatVersion = '1.4.1'
    ext.coreVersion = '1.7.0'
    ext.fragmentVersion = '1.4.0'
    ext.lifecycleVersion = '2.4.0'
    ext.loaderVersion = '1.1.0'
    ext.mediarouterVersion = '1.2.5'
    ext.multidexVersion = '2.0.1'
    ext.navigationVersion = '2.3.5'
+6 −3
Original line number Diff line number Diff line
@@ -39,9 +39,12 @@ apply from: '../gradle/publish-android.gradle'
description = 'microG implementation of play-services-base'

dependencies {
    api project(':play-services-basement')
    api project(':play-services-tasks')
    api project(':play-services-base-api')

    implementation "androidx.fragment:fragment:$fragmentVersion"
    // Dependencies from play-services-base:18.0.1
    api "androidx.collection:collection:1.0.0"
    api "androidx.core:core:1.2.0"
    api "androidx.fragment:fragment:1.0.0"
    api project(':play-services-basement')
    api project(':play-services-tasks')
}
+4 −1
Original line number Diff line number Diff line
@@ -21,7 +21,10 @@ apply plugin: 'signing'
dependencies {
    api "org.microg:safe-parcel:$safeParcelVersion"

    implementation "androidx.annotation:annotation:$annotationVersion"
    // Dependencies from play-services-basement:18.0.0
    api "androidx.collection:collection:1.0.0"
    api "androidx.core:core:1.2.0"
    api "androidx.fragment:fragment:1.0.0"
}

android {
+10 −14
Original line number Diff line number Diff line
/*
 * Copyright 2013-2015 microG Project Team
 *
 * 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.
 * SPDX-FileCopyrightText: 2015 microG Project Team
 * SPDX-License-Identifier: Apache-2.0
 */

apply plugin: 'com.android.library'
@@ -42,6 +31,13 @@ android {
}

dependencies {
    api project(':play-services-base')
    api project(':play-services-cast-api')

    // Dependencies from play-services-cast:21.0.1
    api "androidx.core:core:1.0.0"
    api "androidx.mediarouter:mediarouter:1.2.2"
    api project(':play-services-base')
    api project(':play-services-basement')
    //api project(':play-services-flags')
    api project(':play-services-tasks')
}
+9 −15
Original line number Diff line number Diff line
/*
 * Copyright 2013-2015 microG Project Team
 *
 * 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.
 * SPDX-FileCopyrightText: 2016 microG Project Team
 * SPDX-License-Identifier: Apache-2.0
 */

apply plugin: 'com.android.library'
@@ -42,7 +31,12 @@ android {
}

dependencies {
    // Dependencies from play-services-gcm:17.0.0
    api "androidx.collection:collection:1.0.0"
    api "androidx.core:core:1.0.0"
    api 'androidx.legacy:legacy-support-core-utils:1.0.0'
    api project(':play-services-base')
    api project(':play-services-basement')
    api project(':play-services-iid')

    implementation 'androidx.legacy:legacy-support-core-utils:1.0.0' // TODO
    //api project(':play-services-stats')
}
Loading