-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update AndroidManifest.tmpl.xml #2538
Conversation
For the apps targeting api level 31 (A12) and contain activities, services, or broadcast receivers that use intent filters, you must explicitly declare the android:exported attribute for these app components. If an activity, service, or broadcast receiver uses intent filters and doesn't have an explicitly-declared value for android:exported, your app can't be installed on a device that runs Android 12 or higher. (https://developer.android.com/about/versions/12/behavior-changes-12). I added three changes accordingly with the requirements.
closes #2511 |
Thank you @drahba! We have some other bootstraps that use intent filters, how do you feel about taking care of them all? See: https://github.com/kivy/python-for-android/tree/develop/pythonforandroid/bootstraps |
Hi Mirko,
I may try to help but be aware that I have been learning python and kivy
for the last two years. But I feel that I will try to check and do what I
can do. I will be more than happy if I can contribute to this great project.
…On Thu, Jan 13, 2022 at 10:42 PM Mirko Galimberti ***@***.***> wrote:
Thank you @drahba <https://github.com/drahba>!
We have some other bootstraps that use intent filters, how do you feel
about taking care of them all?
See:
https://github.com/kivy/python-for-android/tree/develop/pythonforandroid/bootstraps
—
Reply to this email directly, view it on GitHub
<#2538 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AU5SSUZ6ZA6IS6XRSBGKSZTUV4TLPANCNFSM5L4RFVJQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Today, with these changes, I have successfully collected 2 releases of the application and published them, everything works |
Last week was busy at the hospital, I will make the changes in one commit
this weekend.
…On Sat, Feb 5, 2022 at 5:23 PM Mirko Galimberti ***@***.***> wrote:
@drahba <https://github.com/drahba> Did you have the occasion to mix the
4 PRs (#2543 <#2543> #2542
<#2542> #2541
<#2541> #2538
<#2538>)?
I would really like to merge your changes, but in order to not pollute the
commit history is better to have one single commit for all these PRs 😄
—
Reply to this email directly, view it on GitHub
<#2538 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AU5SSU7WKL2DB2O2R4AESP3UZUXG5ANCNFSM5L4RFVJQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
No problem, take your time 😃 Seen the changes you made in the new PR. Closing as: Superseded by #2551 |
For the apps targeting api level 31 (A12) and contain activities, services, or broadcast receivers that use intent filters, you must explicitly declare the android:exported attribute for these app components. If an activity, service, or broadcast receiver uses intent filters and doesn't have an explicitly-declared value for android:exported, your app can't be installed on a device that runs Android 12 or higher. (https://developer.android.com/about/versions/12/behavior-changes-12). I added three changes accordingly with the requirements.