continuar

This commit is contained in:
MeuNome
2026-04-21 17:09:31 +01:00
parent 9ff7ada370
commit 514d3e59ec
312 changed files with 15641 additions and 16672 deletions

View File

@@ -12,6 +12,7 @@
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.USE_BIOMETRIC" /> <!-- suppress DeprecatedClassUsageInspection -->
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<permission
android:name="com.fluxup.app.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"
@@ -20,6 +21,7 @@
<uses-permission android:name="com.fluxup.app.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" />
<application
android:name="com.fluxup.app.FluxupApplication"
android:allowBackup="true"
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
android:debuggable="true"
@@ -43,32 +45,6 @@
<activity android:name="com.fluxup.app.ForgotPasswordActivity" />
<activity android:name="com.fluxup.app.MainActivity" />
<activity android:name="com.fluxup.app.SettingsActivity" />
<service
android:name="androidx.credentials.playservices.CredentialProviderMetadataHolder"
android:enabled="true"
android:exported="false" >
<meta-data
android:name="androidx.credentials.CREDENTIAL_PROVIDER_KEY"
android:value="androidx.credentials.playservices.CredentialProviderPlayServicesImpl" />
</service>
<activity
android:name="androidx.credentials.playservices.controllers.identityauth.HiddenActivity"
android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
android:enabled="true"
android:exported="false"
android:fitsSystemWindows="true"
android:theme="@style/Theme.Hidden" >
</activity>
<activity
android:name="androidx.credentials.playservices.controllers.identitycredentials.IdentityCredentialApiHiddenActivity"
android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
android:enabled="true"
android:exported="false"
android:fitsSystemWindows="true"
android:theme="@style/Theme.Hidden" >
</activity>
<activity
android:name="com.google.firebase.auth.internal.GenericIdpActivity"
android:excludeFromRecents="true"
@@ -138,7 +114,31 @@
android:name="com.google.firebase.components:com.google.firebase.FirebaseCommonKtxRegistrar"
android:value="com.google.firebase.components.ComponentRegistrar" />
</service>
<service
android:name="androidx.credentials.playservices.CredentialProviderMetadataHolder"
android:enabled="true"
android:exported="false" >
<meta-data
android:name="androidx.credentials.CREDENTIAL_PROVIDER_KEY"
android:value="androidx.credentials.playservices.CredentialProviderPlayServicesImpl" />
</service>
<activity
android:name="androidx.credentials.playservices.controllers.identityauth.HiddenActivity"
android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
android:enabled="true"
android:exported="false"
android:fitsSystemWindows="true"
android:theme="@style/Theme.Hidden" >
</activity>
<activity
android:name="androidx.credentials.playservices.controllers.identitycredentials.IdentityCredentialApiHiddenActivity"
android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
android:enabled="true"
android:exported="false"
android:fitsSystemWindows="true"
android:theme="@style/Theme.Hidden" >
</activity>
<activity
android:name="com.google.android.gms.auth.api.signin.internal.SignInHubActivity"
android:excludeFromRecents="true"
@@ -210,7 +210,12 @@
<intent-filter>
<action android:name="androidx.profileinstaller.action.BENCHMARK_OPERATION" />
</intent-filter>
</receiver>
</receiver> <!-- The activities will be merged into the manifest of the hosting app. -->
<activity
android:name="com.google.android.play.core.common.PlayCoreDialogWrapperActivity"
android:exported="false"
android:stateNotNeeded="true"
android:theme="@style/Theme.PlayCore.Transparent" />
</application>
</manifest>