You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 18, 2023. It is now read-only.
Good evening,
when I set the compileSdkVersion to 31 in my gradle.build file the building process starts to act up.
Since "Apps targeting Android 12 and higher are required to specify an explicit value for android:exported" it tells me "Manifest merger failed : android:exported needs to be explicitly specified for element <service#com.aware.utils.Aware_Accounts>" and also "android:exported needs to be explicitly specified for element <service#com.aware.utils.Aware_Accounts>.", those are lines I was not able to find in the AndroidManifest.xml file and thus led me to believe that they were in the source code (i.e. out of my reach), is that correct?
If so, will you change the code to specify exported/give us a way to do so?
Thank you very much.
The text was updated successfully, but these errors were encountered:
What the error is saying is that those values are not explicitly set. You can add them to AndroidManifest.xml on your app (copy the item you want to override to your app manifest and when it merges, it uses your version).
Good evening,
when I set the compileSdkVersion to 31 in my gradle.build file the building process starts to act up.
Since "Apps targeting Android 12 and higher are required to specify an explicit value for
android:exported
" it tells me "Manifest merger failed : android:exported needs to be explicitly specified for element <service#com.aware.utils.Aware_Accounts>" and also "android:exported needs to be explicitly specified for element <service#com.aware.utils.Aware_Accounts>.", those are lines I was not able to find in the AndroidManifest.xml file and thus led me to believe that they were in the source code (i.e. out of my reach), is that correct?If so, will you change the code to specify exported/give us a way to do so?
Thank you very much.
The text was updated successfully, but these errors were encountered: