Android 11 SDK 30 <queries> My app interact...
# android
i
Android 11 SDK 30 <queries> My app interacts with other app. I added to main mainfest
Copy code
<queries>
    <package android:name="kl.mobile.myapp" />
</queries>
but it doesn't work on Android 11. What I forgot to add? On Android 9, 10 it works https://developer.android.com/guide/topics/manifest/queries-element
😶 1
g
@Ink Define the intent and intent actions, category and data that you are using while trying to interact with other apps inside the query element. <intent> <action android:name="android.intent.action.XXXXX" /> <category android:name="android.intent.category.XXXXX" /> <data android:XXXXX="*" /> </intent>
i
I've added
Copy code
<intent>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
</intent>
I just open another app from my app.
g
What is your expected result?
i
Open second app from the first one, like it works on Android 9,10 :)
g
So, its working now in 11?
i
Nope, I'm still searching for solution