Skip to content
This repository was archived by the owner on Jan 5, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
## Java
*.class
*.war
*.ear
hs_err_pid*

## Intellij
out/
/lib/
.idea/*
!.idea/runConfigurations*
!.idea/inspectionProfiles*
!.idea/codeStyles*
!.idea/dictionaries*
*.ipr
*.iws
*.iml

## Eclipse
.classpath
.project
.metadata
**/bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.settings/
.loadpath
.externalToolBuilders/
*.launch

## NetBeans
**/nbproject/private/
/build/
/app/build/
nbbuild/
dist/
nbdist/
nbactions.xml
nb-configuration.xml

## Gradle
.gradle
keystore.properties
gradle-app.setting

## OS Specific
.DS_Store

## Android
gen/
64 changes: 0 additions & 64 deletions Android.bp

This file was deleted.

7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 28
compileSdkVersion 31

defaultConfig {
minSdkVersion 14
targetSdkVersion 28
minSdkVersion 29
targetSdkVersion 31
}

buildTypes {
Expand All @@ -47,4 +47,5 @@ dependencies {
implementation "androidx.annotation:annotation:1.0.0"
implementation "androidx.recyclerview:recyclerview:1.0.0"
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'com.google.android.material:material:1.4.0'
}
4 changes: 4 additions & 0 deletions lint.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,8 @@
<!-- Stop lint from complaining about SDK version checks in the "platform" variant -->
<issue id="ObsoleteSdkInt" severity="ignore" />
<issue id="RtlEnabled" severity="ignore" />

<issue id="ResourceType" severity="ignore" />
<issue id="AppCompatCustomView" severity="ignore" />
<issue id="MissingDefaultResource" severity="ignore" />
</lint>
31 changes: 0 additions & 31 deletions lottie_loading_layout/Android.bp

This file was deleted.

4 changes: 2 additions & 2 deletions main/res/drawable-anydpi-v21/sud_navbar_ic_back.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

<!-- go/gm2-icons, from quantum_gm_ic_keyboard_arrow_left_vd_theme_24.xml -->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="@dimen/sud_navbar_ic_intrinsic_size"
android:height="@dimen/sud_navbar_ic_intrinsic_size"
android:width="24dp"
android:height="24dp"
android:autoMirrored="true"
android:tint="?attr/sudNavBarTextColor"
android:viewportHeight="24"
Expand Down
4 changes: 2 additions & 2 deletions main/res/drawable-anydpi-v21/sud_navbar_ic_more.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

<!-- go/gm2-icons, from quantum_gm_ic_keyboard_arrow_down_vd_theme_24.xml -->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="@dimen/sud_navbar_ic_intrinsic_size"
android:height="@dimen/sud_navbar_ic_intrinsic_size"
android:width="24dp"
android:height="24dp"
android:tint="?attr/sudNavBarTextColor"
android:viewportHeight="24"
android:viewportWidth="24">
Expand Down
4 changes: 2 additions & 2 deletions main/res/drawable-anydpi-v21/sud_navbar_ic_next.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

<!-- go/gm2-icons, from quantum_gm_ic_keyboard_arrow_right_vd_theme_24.xml -->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="@dimen/sud_navbar_ic_intrinsic_size"
android:height="@dimen/sud_navbar_ic_intrinsic_size"
android:width="24dp"
android:height="24dp"
android:autoMirrored="true"
android:tint="?attr/sudNavBarTextColor"
android:viewportHeight="24"
Expand Down