225 lines
10 KiB
XML
225 lines
10 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.example.cuida"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="24"
|
|
android:targetSdkVersion="35" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
|
|
<!-- Notificações e Alarmes -->
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
|
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
|
|
<uses-permission android:name="android.permission.USE_EXACT_ALARM" />
|
|
<uses-permission android:name="android.permission.USE_BIOMETRIC" /> <!-- suppress DeprecatedClassUsageInspection -->
|
|
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
|
|
|
|
<permission
|
|
android:name="com.example.cuida.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"
|
|
android:protectionLevel="signature" />
|
|
|
|
<uses-permission android:name="com.example.cuida.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:debuggable="true"
|
|
android:extractNativeLibs="false"
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
android:icon="@drawable/ic_launcher_final"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@drawable/ic_launcher_final"
|
|
android:supportsRtl="true"
|
|
android:testOnly="true"
|
|
android:theme="@style/Theme.Cuida" >
|
|
<activity
|
|
android:name="com.example.cuida.MainActivity"
|
|
android:exported="true"
|
|
android:windowSoftInputMode="adjustResize" >
|
|
|
|
<!-- Launcher Intent Filter handled in LoginActivity usually, but for now we might start Main -->
|
|
</activity>
|
|
<activity
|
|
android:name="com.example.cuida.ui.auth.LoginActivity"
|
|
android:exported="true" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name="com.example.cuida.ui.auth.RegisterActivity" />
|
|
<activity android:name="com.example.cuida.ui.auth.ForgotPasswordActivity" />
|
|
|
|
<receiver
|
|
android:name="com.example.cuida.services.AlarmReceiver"
|
|
android:exported="false" />
|
|
|
|
<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.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.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"
|
|
android:exported="true"
|
|
android:launchMode="singleTask"
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data
|
|
android:host="firebase.auth"
|
|
android:path="/"
|
|
android:scheme="genericidp" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name="com.google.firebase.auth.internal.RecaptchaActivity"
|
|
android:excludeFromRecents="true"
|
|
android:exported="true"
|
|
android:launchMode="singleTask"
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data
|
|
android:host="firebase.auth"
|
|
android:path="/"
|
|
android:scheme="recaptcha" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<service
|
|
android:name="com.google.firebase.components.ComponentDiscoveryService"
|
|
android:directBootAware="true"
|
|
android:exported="false" >
|
|
<meta-data
|
|
android:name="com.google.firebase.components:com.google.firebase.auth.FirebaseAuthRegistrar"
|
|
android:value="com.google.firebase.components.ComponentRegistrar" />
|
|
<meta-data
|
|
android:name="com.google.firebase.components:com.google.firebase.firestore.FirebaseFirestoreKtxRegistrar"
|
|
android:value="com.google.firebase.components.ComponentRegistrar" />
|
|
<meta-data
|
|
android:name="com.google.firebase.components:com.google.firebase.firestore.FirestoreRegistrar"
|
|
android:value="com.google.firebase.components.ComponentRegistrar" />
|
|
<meta-data
|
|
android:name="com.google.firebase.components:com.google.firebase.ai.FirebaseAIRegistrar"
|
|
android:value="com.google.firebase.components.ComponentRegistrar" />
|
|
<meta-data
|
|
android:name="com.google.firebase.components:com.google.firebase.ktx.FirebaseCommonLegacyRegistrar"
|
|
android:value="com.google.firebase.components.ComponentRegistrar" />
|
|
<meta-data
|
|
android:name="com.google.firebase.components:com.google.firebase.FirebaseCommonKtxRegistrar"
|
|
android:value="com.google.firebase.components.ComponentRegistrar" />
|
|
</service>
|
|
|
|
<activity
|
|
android:name="com.google.android.gms.auth.api.signin.internal.SignInHubActivity"
|
|
android:excludeFromRecents="true"
|
|
android:exported="false"
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar" />
|
|
<!--
|
|
Service handling Google Sign-In user revocation. For apps that do not integrate with
|
|
Google Sign-In, this service will never be started.
|
|
-->
|
|
<service
|
|
android:name="com.google.android.gms.auth.api.signin.RevocationBoundService"
|
|
android:exported="true"
|
|
android:permission="com.google.android.gms.auth.api.signin.permission.REVOCATION_NOTIFICATION"
|
|
android:visibleToInstantApps="true" />
|
|
|
|
<activity
|
|
android:name="com.google.android.gms.common.api.GoogleApiActivity"
|
|
android:exported="false"
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar" />
|
|
|
|
<provider
|
|
android:name="com.google.firebase.provider.FirebaseInitProvider"
|
|
android:authorities="com.example.cuida.firebaseinitprovider"
|
|
android:directBootAware="true"
|
|
android:exported="false"
|
|
android:initOrder="100" />
|
|
<provider
|
|
android:name="androidx.startup.InitializationProvider"
|
|
android:authorities="com.example.cuida.androidx-startup"
|
|
android:exported="false" >
|
|
<meta-data
|
|
android:name="androidx.emoji2.text.EmojiCompatInitializer"
|
|
android:value="androidx.startup" />
|
|
<meta-data
|
|
android:name="androidx.lifecycle.ProcessLifecycleInitializer"
|
|
android:value="androidx.startup" />
|
|
<meta-data
|
|
android:name="androidx.profileinstaller.ProfileInstallerInitializer"
|
|
android:value="androidx.startup" />
|
|
</provider>
|
|
|
|
<uses-library
|
|
android:name="androidx.window.extensions"
|
|
android:required="false" />
|
|
<uses-library
|
|
android:name="androidx.window.sidecar"
|
|
android:required="false" />
|
|
|
|
<receiver
|
|
android:name="androidx.profileinstaller.ProfileInstallReceiver"
|
|
android:directBootAware="false"
|
|
android:enabled="true"
|
|
android:exported="true"
|
|
android:permission="android.permission.DUMP" >
|
|
<intent-filter>
|
|
<action android:name="androidx.profileinstaller.action.INSTALL_PROFILE" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="androidx.profileinstaller.action.SKIP_FILE" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="androidx.profileinstaller.action.SAVE_PROFILE" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="androidx.profileinstaller.action.BENCHMARK_OPERATION" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<meta-data
|
|
android:name="com.google.android.gms.version"
|
|
android:value="@integer/google_play_services_version" />
|
|
</application>
|
|
|
|
</manifest> |