mirror of
https://github.com/YTVanced/VancedManager
synced 2024-11-25 04:35:12 +00:00
Merge branch 'dev' of https://github.com/YTVanced/VancedManager into dev
This commit is contained in:
commit
e6f04a95c8
4 changed files with 32 additions and 4 deletions
4
.github/workflows/debug.yml
vendored
4
.github/workflows/debug.yml
vendored
|
@ -4,9 +4,13 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- dev
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
pull_request:
|
||||
branches:
|
||||
- dev
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
21
README.md
21
README.md
|
@ -1,4 +1,10 @@
|
|||
# Vanced Manager [![Github All Releases](https://img.shields.io/github/downloads/YTVanced/VancedManager/total.svg)](https://github.com/YTVanced/VancedManager/releases/latest) [![Github All Releases](https://img.shields.io/github/release/YTVanced/VancedManager.svg)](https://github.com/YTVanced/VancedManager/releases/latest)
|
||||
# Vanced Manager
|
||||
<div>
|
||||
|
||||
[![Github All Releases](https://img.shields.io/github/downloads/YTVanced/VancedManager/total.svg?style=for-the-badge)](https://github.com/YTVanced/VancedManager/releases/latest) [![Github All Releases](https://img.shields.io/github/release/YTVanced/VancedManager.svg?style=for-the-badge)](https://github.com/YTVanced/VancedManager/releases/latest)
|
||||
|
||||
</div>
|
||||
|
||||
Hi, when we released Vanced 15.05.54, people were upset because it used the .apks format, which was way harder to install than a traditional .apk file. Even though we wrote clear instructions on how to install the new Vanced build, people still couldn't figure it out.
|
||||
Then we thought, "why don't we make a manager for vanced, which will download, update and uninstall Vanced and MicroG, have an easy and understandable UI and be less than 10mb?" and that's how Vanced Manager was born.
|
||||
|
||||
|
@ -15,7 +21,14 @@ For anyone who wants to provide translations please submit them to https://crowd
|
|||
- [ ] Clean up the ViewModel and DataModel code
|
||||
- [ ] Migrate to Jetpack Compose when it's officially released
|
||||
|
||||
## Building [![Build](https://github.com/YTVanced/VancedManager/actions/workflows/debug.yml/badge.svg?branch=dev)](https://github.com/YTVanced/VancedManager/actions/workflows/debug.yml)
|
||||
## Building
|
||||
|
||||
<div>
|
||||
|
||||
[![Build](https://github.com/YTVanced/VancedManager/actions/workflows/debug.yml/badge.svg?branch=dev)](https://github.com/YTVanced/VancedManager/actions/workflows/debug.yml)
|
||||
|
||||
</div>
|
||||
|
||||
### Using Android Studio
|
||||
Clone the repo, open it in Android Studio and build the app.
|
||||
|
||||
|
@ -31,4 +44,6 @@ chmod +x gradlew
|
|||
```
|
||||
|
||||
## Vanced FAQ
|
||||
Vanced FAQ (from the faq branch) now available on the playstore! https://play.google.com/store/apps/details?id=com.vanced.faq
|
||||
Vanced FAQ (from the faq branch) now available on the playstore!
|
||||
|
||||
<a href='https://play.google.com/store/apps/details?id=com.vanced.faq&pcampaignid=pcampaignidMKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'><img alt='Get it on Google Play' height="85" src='https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png'/></a>
|
||||
|
|
8
app/src/main/res/values-night/colors.xml
Normal file
8
app/src/main/res/values-night/colors.xml
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<!--Splash screen color for dark/night theme-->
|
||||
<color name="splash">#131317</color>
|
||||
|
||||
</resources>
|
||||
|
|
@ -12,6 +12,7 @@
|
|||
<color name="Gray">#5F5E5E</color>
|
||||
<color name="White">#ffffff</color>
|
||||
<color name="Black">#000000</color>
|
||||
<color name="splash">#131317</color>
|
||||
<!--Splash screen color for light/day theme-->
|
||||
<color name="splash">#cfcfcf</color>
|
||||
|
||||
</resources>
|
||||
|
|
Loading…
Reference in a new issue