-
-
Notifications
You must be signed in to change notification settings - Fork 62
Description
Find a way to supply plugin-specific config for Android manifest (appAuthRedirectScheme), that would merge with user-supplied manifest/config
Hi! I had to enable multidex in my project (this article was used https://habr.com/ru/post/487336/), but still can't build on Android.
Manifest merger failed : Attribute data@scheme at AndroidManifest.xml requires a placeholder substitution but no value for <appAuthRedirectScheme> is provided.
I was trying to find a solution on web, but with no luck. Adding
manifestPlaceholders = [appAuthRedirectScheme: 'com.redirectScheme.comm']
to mainTemplate.gradle doesn't help. At the same time, I can build my project with multidex enabled after removing UGD (but this is not an option for me actually).
Also I've found that some people also mentioned UGD related to appAuthRedirectScheme issue here:
https://forum.unity.com/threads/gradle-nightmare-appauthredirectscheme.831934/
Hope to find a solution soon...