Files
BudgetWidgetTracker/app/build/intermediates/merged_manifests/debug/processDebugManifest/AndroidManifest.xml
2026-09-18 15:56:54 +10:00

94 lines
3.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.budgetwidget"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="26"
android:targetSdkVersion="34" />
<uses-permission android:name="android.permission.INTERNET" />
<permission
android:name="com.example.budgetwidget.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"
android:protectionLevel="signature" />
<uses-permission android:name="com.example.budgetwidget.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" />
<application
android:allowBackup="true"
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
android:debuggable="true"
android:extractNativeLibs="false"
android:icon="@android:drawable/sym_def_app_icon"
android:label="@string/app_name"
android:testOnly="true"
android:theme="@style/Theme.BudgetTrackerWidget" >
<activity
android:name="com.example.budgetwidget.MainActivity"
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.budgetwidget.SettingsActivity"
android:exported="false"
android:label="@string/settings_title" />
<receiver
android:name="com.example.budgetwidget.BudgetWidgetProvider"
android:exported="false" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/budget_widget_info" />
</receiver>
<service
android:name="com.example.budgetwidget.BudgetWidgetService"
android:permission="android.permission.BIND_REMOTEVIEWS" />
<provider
android:name="androidx.startup.InitializationProvider"
android:authorities="com.example.budgetwidget.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>
<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>
</application>
</manifest>