From 592013971065f290ba43e546c3e58e4058eea28d Mon Sep 17 00:00:00 2001 From: X1nto Date: Sun, 5 Apr 2020 23:37:02 +0400 Subject: [PATCH] slight update --- README.md | 2 +- app/src/main/java/com/vanced/manager/ui/MainActivity.kt | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 523d21c6..01412a74 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/app/src/main/java/com/vanced/manager/ui/MainActivity.kt b/app/src/main/java/com/vanced/manager/ui/MainActivity.kt index 43dbd313..902bd2dd 100644 --- a/app/src/main/java/com/vanced/manager/ui/MainActivity.kt +++ b/app/src/main/java/com/vanced/manager/ui/MainActivity.kt @@ -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)