Merge branch 'dev' into renovate/com.google.android.material-material-1.x
This commit is contained in:
commit
96bf96ba8d
15 changed files with 266 additions and 142 deletions
|
@ -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'
|
||||
|
|
6
app/src/debug/res/mipmap-anydpi-v26/ic_launcher.xml
Normal file
6
app/src/debug/res/mipmap-anydpi-v26/ic_launcher.xml
Normal 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>
|
|
@ -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>
|
3
app/src/debug/res/values/strings.xml
Normal file
3
app/src/debug/res/values/strings.xml
Normal file
|
@ -0,0 +1,3 @@
|
|||
<resources>
|
||||
<string name="app_name">Dev Vendroid</string>
|
||||
</resources>
|
|
@ -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>
|
|
@ -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 });
|
||||
|
||||
})();
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue