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

Commit 203982fa authored by Aayush Gupta's avatar Aayush Gupta Committed by LuK1337
Browse files

libs: Drop prebuilt dependencies



- All libraries have a major version bump making this non-required

Signed-off-by: default avatarAayush Gupta <aayushgupta219@gmail.com>
Change-Id: Iac5773d98620a7733b4300d90b0d76b166dfd661
parent f711499b
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -24,10 +24,10 @@ android_app {
        "kotlin-annotations",
        "kotlinx-coroutines-android",
        "kotlinx-coroutines-core",
        "etar-lib-androidx-constraintlayout_constraintlayout",
        "etar-lib-androidx.preference_preference",
        "etar-lib-androidx.appcompat_appcompat",
        "etar-lib-com.google.android.material_material",
        "androidx-constraintlayout_constraintlayout",
        "androidx.preference_preference",
        "androidx.appcompat_appcompat",
        "com.google.android.material_material",
    ],

    optimize: {
+0 −29
Original line number Diff line number Diff line
android_library_import {
    name: "etar-lib-androidx.appcompat_appcompat-resources-nodeps",
    aars: ["appcompat-resources-1.3.1.aar"],
    sdk_version: "current",
    min_sdk_version: "14",
    static_libs: [
        "androidx.annotation_annotation",
        "androidx.collection_collection",
        "androidx.core_core",
        "androidx.vectordrawable_vectordrawable",
        "androidx.vectordrawable_vectordrawable-animated",
    ],
}

android_library {
    name: "etar-lib-androidx.appcompat_appcompat-resources",
    sdk_version: "current",
    min_sdk_version: "14",
    manifest: "AndroidManifest.xml",
    static_libs: [
        "etar-lib-androidx.appcompat_appcompat-resources-nodeps",
        "androidx.annotation_annotation",
        "androidx.collection_collection",
        "androidx.core_core",
        "androidx.vectordrawable_vectordrawable",
        "androidx.vectordrawable_vectordrawable-animated",
    ],
    java_version: "1.7",
}
 No newline at end of file
+0 −24
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
 Copyright (C) 2012 The Android Open Source Project

     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.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="androidx.appcompat.resources" >

    <uses-sdk
        android:minSdkVersion="14"
        android:targetSdkVersion="30" />

</manifest>
 No newline at end of file
−63.7 KiB

File deleted.

+0 −41
Original line number Diff line number Diff line
android_library_import {
    name: "etar-lib-androidx.appcompat_appcompat-nodeps",
    aars: ["appcompat-1.3.1.aar"],
    sdk_version: "current",
    min_sdk_version: "14",
    static_libs: [
        "androidx.annotation_annotation",
        "androidx.collection_collection",
        "androidx.core_core",
        "androidx.cursoradapter_cursoradapter",
        "androidx.activity_activity",
        "androidx.fragment_fragment",
        "etar-lib-androidx.appcompat_appcompat-resources",
        "androidx.drawerlayout_drawerlayout",
        "androidx.savedstate_savedstate",
        "androidx.lifecycle_lifecycle-runtime",
        "androidx.lifecycle_lifecycle-viewmodel",
    ],
}

android_library {
    name: "etar-lib-androidx.appcompat_appcompat",
    sdk_version: "current",
    min_sdk_version: "14",
    manifest: "AndroidManifest.xml",
    static_libs: [
        "etar-lib-androidx.appcompat_appcompat-nodeps",
        "androidx.annotation_annotation",
        "androidx.collection_collection",
        "androidx.core_core",
        "androidx.cursoradapter_cursoradapter",
        "androidx.activity_activity",
        "androidx.fragment_fragment",
        "etar-lib-androidx.appcompat_appcompat-resources",
        "androidx.drawerlayout_drawerlayout",
        "androidx.savedstate_savedstate",
        "androidx.lifecycle_lifecycle-runtime",
        "androidx.lifecycle_lifecycle-viewmodel",
    ],
    java_version: "1.7",
}
Loading