From 16b119052964032a9f14ac4921a89ec9110ff567 Mon Sep 17 00:00:00 2001 From: Amit Sharma Date: Thu, 4 Jan 2024 15:43:12 -0500 Subject: [PATCH] Explicitly specify android:exported to activity-alias android:exported should be explicitly specified to activity-alias element(just like activity, service and receiver) when the corresponding component has an intent filter defined. This will be enforced in the future version of AGP. --- app/src/main/AndroidManifest.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 4848265ec..c00472b04 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -48,7 +48,8 @@ + android:targetActivity=".ui.HomeActivity" + android:exported="true">