slight update

This commit is contained in:
X1nto 2020-04-05 23:37:02 +04:00
parent b89c2feab0
commit 5920139710
2 changed files with 4 additions and 1 deletions

View File

@ -9,7 +9,7 @@ Main problems with new format were either with device CPU architecture or MemeUI
# Vanced Manager
Ladies and gentlemen, I'm very proud to introduce the new **Vanced Manager ci Alpha Ui Preview Test Build 0.1.9™** which only has a UI at the time lol
Vanced Manager is an universal utility for installing/updating Vanced and MicroG. It will push notifications once the update is ready and for root users, it can also automatically download and install them (Now that's pwetty epic).
Vanced manager comes with a slick UI ~~that was stolen from the new Magisk Manager (I'm very sorry John but i looked your code for about 100 times).~~ Actually, while UI may look very similar to new Magisk Manager's UI, It's still very different (that's a blatant lie, I know).
Vanced manager comes with a slick UI ~~that was stolen from the new Magisk Manager (I'm very sorry John but I looked your code for about 100 times).~~ Actually, while UI may look very similar to new Magisk Manager's UI, It's still very different (that's a blatant lie, I know).
##### I'll probably forget this later so I should put a comment here saying that we should put some screenshots from manager once the UI is ready because why not
## Credits
### Vanced Manager developers:

View File

@ -1,6 +1,7 @@
package com.vanced.manager.ui
import android.content.Intent
import android.content.res.Configuration
import android.os.Bundle
import android.view.Menu
import android.view.MenuItem
@ -28,6 +29,8 @@ class MainActivity : AppCompatActivity() {
AppCompatDelegate.MODE_NIGHT_NO -> {
setTheme(R.style.LightTheme)
}
AppCompatDelegate.MODE_NIGHT_FOLLOW_SYSTEM -> {
}
}
super.onCreate(null)
setContentView(R.layout.activity_main)