1
0
Fork 0

Merge branch 'dev' into renovate/com.google.android.material-material-1.x

This commit is contained in:
nin0 2024-07-16 00:41:24 -04:00 committed by GitHub
commit 96bf96ba8d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 266 additions and 142 deletions

View file

@ -17,7 +17,7 @@ android {
buildTypes {
debug {
applicationIdSuffix ".debug"
}
release {
@ -31,9 +31,11 @@ android {
}
dependencies {
implementation 'androidx.annotation:annotation:1.7.1'
implementation 'androidx.annotation:annotation:1.8.0'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.28'
implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.activity:activity:1.9.0'
implementation 'com.android.volley:volley:1.2.1'

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@mipmap/ic_launcher_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
<monochrome android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/debug_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
<monochrome android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>

View file

@ -0,0 +1,3 @@
<resources>
<string name="app_name">Dev Vendroid</string>
</resources>

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@mipmap/ic_launcher_background"/>
<background android:drawable="@color/debug_background"/>
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
<monochrome android:drawable="@drawable/ic_launcher_foreground"/>
</adaptive-icon>

View file

@ -35,6 +35,7 @@
}
};
document.addEventListener("DOMContentLoaded", () => {
document.documentElement.appendChild(
Object.assign(document.createElement("link"), {
@ -49,4 +50,5 @@
href: "https://github.com/VendroidEnhanced/plugin/releases/download/css/fixes.css"
}));
}, { once: true });
})();

View file

@ -1,6 +1,7 @@
<resources>
<color name="seed">#5865F2</color>
<color name="debug_background">#FFC800</color>
<color name="md_theme_light_primary">#3F4CDA</color>
<color name="md_theme_light_onPrimary">#FFFFFF</color>
<color name="md_theme_light_primaryContainer">#E0E0FF</color>