Remove draglinearlayout library

This commit is contained in:
MM20 2022-09-18 15:11:27 +02:00
parent 86bdbecda3
commit 7351808d00
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389
8 changed files with 0 additions and 92 deletions

View File

@ -101,8 +101,6 @@ dependencies {
implementation(libs.bundles.materialdialogs) implementation(libs.bundles.materialdialogs)
implementation(libs.draglinearlayout)
implementation(libs.koin.android) implementation(libs.koin.android)
implementation(project(":accounts")) implementation(project(":accounts"))

View File

@ -93,14 +93,6 @@ val OpenSourceLicenses = arrayOf(
copyrightNote = "Copyright (C) 2020 Wasabeef", copyrightNote = "Copyright (C) 2020 Wasabeef",
url = "https://github.com/afollestad/material-dialogs" url = "https://github.com/afollestad/material-dialogs"
), ),
OpenSourceLibrary(
name = "DragLinearLayout",
description = "An Android LinearLayout that supports draggable and swappable child Views",
licenseName = R.string.mit_license_name,
licenseText = R.raw.license_mit,
copyrightNote = "Copyright (c) 2014 Justas Medeisis",
url = "https://github.com/justasm/DragLinearLayout"
),
OpenSourceLibrary( OpenSourceLibrary(
name = "mXparser (Version 4.4.2)", name = "mXparser (Version 4.4.2)",
description = "A super easy, rich, fast and highly flexible math expression parser library", description = "A super easy, rich, fast and highly flexible math expression parser library",

View File

@ -27,7 +27,6 @@ allprojects {
} }
} }
maven(url = "https://pkgs.dev.azure.com/MicrosoftDeviceSDK/DuoSDK-Public/_packaging/Duo-SDK-Feed/maven/v1") maven(url = "https://pkgs.dev.azure.com/MicrosoftDeviceSDK/DuoSDK-Public/_packaging/Duo-SDK-Feed/maven/v1")
jcenter() // For draglinearlayout
} }
} }

View File

@ -322,10 +322,6 @@ dependencyResolutionManagement {
) )
) )
alias("draglinearlayout")
.to("com.jmedeisis", "draglinearlayout")
.version("1.1.0")
// 4.4.2 is the last GPL compatible version, don't update to 5.x // 4.4.2 is the last GPL compatible version, don't update to 5.x
alias("mathparser") alias("mathparser")
.to("org.mariuszgromada.math", "MathParser.org-mXparser") .to("org.mariuszgromada.math", "MathParser.org-mXparser")

View File

@ -83,8 +83,6 @@ dependencies {
// Legacy dependencies // Legacy dependencies
implementation(libs.androidx.transition) implementation(libs.androidx.transition)
implementation(libs.draglinearlayout)
implementation(libs.accompanist.insets) implementation(libs.accompanist.insets)
implementation(libs.accompanist.systemuicontroller) implementation(libs.accompanist.systemuicontroller)
implementation(libs.accompanist.pager) implementation(libs.accompanist.pager)

View File

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ProgressBar
android:id="@+id/progressBar"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_gravity="center" />
<ScrollView
android:id="@+id/scrollView"
android:nestedScrollingEnabled="true"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.jmedeisis.draglinearlayout.DragLinearLayout
android:id="@+id/itemList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
</ScrollView>
</merge>

View File

@ -1,30 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="48dp">
<ImageView
android:id="@+id/dragHandle"
style="?iconStyle"
android:padding="12dp"
android:layout_width="48dp"
android:layout_height="match_parent"
app:srcCompat="@drawable/ic_drag_handle" />
<de.mm20.launcher2.ui.legacy.view.LauncherIconView
android:id="@+id/icon"
android:padding="4dp"
android:layout_width="48dp"
android:layout_height="match_parent" />
<TextView
android:id="@+id/label"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="center_vertical"
tools:text="TextView" />
</LinearLayout>

View File

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="?colorOnSecondaryContainer"
android:layout_marginTop="4dp"
android:background="?colorSecondaryContainer"
android:paddingHorizontal="8dp"
android:paddingVertical="8dp"
android:textAppearance="?textAppearanceLabelMedium" />
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:visibility="gone" />
</FrameLayout>