Blocked unexpected network calls to googleapis.com.
This commit is contained in:
parent
eabd08affb
commit
f46af180dc
3 changed files with 26 additions and 5 deletions
|
|
@ -56,6 +56,12 @@
|
|||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<!-- Remove Firebase logging-->
|
||||
<service
|
||||
android:name="com.google.android.datatransport.runtime.scheduling.jobscheduling.JobInfoSchedulerService"
|
||||
tools:node="remove" />
|
||||
|
||||
<!-- Save app locales -->
|
||||
<service
|
||||
android:name="androidx.appcompat.app.AppLocalesMetadataHolderService"
|
||||
android:enabled="false"
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ import android.content.Context
|
|||
import android.os.Build
|
||||
import android.os.Parcelable
|
||||
import android.os.PowerManager
|
||||
import android.view.View
|
||||
import androidx.annotation.Keep
|
||||
import androidx.compose.animation.animateColorAsState
|
||||
import androidx.compose.animation.core.tween
|
||||
|
|
@ -97,6 +98,10 @@ fun BookStoryTheme(
|
|||
window.statusBarColor = Color.Transparent.toArgb()
|
||||
window.navigationBarColor = Color.Transparent.toArgb()
|
||||
|
||||
// Disabling Autofill
|
||||
window.decorView.importantForAutofill =
|
||||
View.IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS
|
||||
|
||||
// Fix for nav bar being semi transparent in api 29+
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
||||
window.isNavigationBarContrastEnforced = false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue