Hello everyone,
I recently updated three apps to version 35. Two of the apps had no issues. They were even updated on Google Play.
However, one app displayed the following message:
The manifest is configured as follows:
Just so you know, the manifest configuration for the other apps doesn't differ much from this configuration.
Any idea what might have happened and how to resolve it?
Thank you in advance for your attention.
I recently updated three apps to version 35. Two of the apps had no issues. They were even updated on Google Play.
However, one app displayed the following message:
Manifest error:
AndroidManifest.xml:239: error: resource style/Theme.Hidden (aka b4a.ListasPro:style/Theme.Hidden) not found. AndroidManifest.xml:247: error: resource style/Theme.Hidden (aka b4a.app:style/Theme.Hidden) not found.
AndroidManifest.xml:255: error: resource style/Theme.PlayCore.Transparent (aka b4a.app:style/Theme.PlayCore.Transparent) not found. error: failed processing manifest.
The manifest is configured as follows:
Manifest:
'This code will be applied to the manifest file during compilation.
'You do not need to modify it in most cases.
'See this link for for more information: https://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="35"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
'CreateResourceFromFile(Macro, Themes.LightTheme)
SetApplicationAttribute(android:allowBackup, "false")
'End of default text.
SetApplicationAttribute(android:theme, "@style/MyAppTheme")
CreateResource(values, theme.xml,
<resources>
<style name="MyAppTheme" parent="Theme.AppCompat.Light.NoActionBar">
</style>
</resources>
)
CreateResourceFromFile(Macro, FirebaseAnalytics.GooglePlayBase)
CreateResourceFromFile(Macro, FirebaseAnalytics.Firebase)
CreateResourceFromFile(Macro, FirebaseAnalytics.FirebaseAnalytics)
CreateResourceFromFile(Macro, FirebaseNotifications.FirebaseNotifications)
CreateResourceFromFile(Macro, FirebaseAuth.FirebaseAuth)
AddPermission(android.permission.USE_BIOMETRIC)
AddPermission(android.permission.SCHEDULE_EXACT_ALARM)
AddPermission(android.permission.POST_NOTIFICATIONS)
AddPermission("android.permission.READ_CONTACTS")
Just so you know, the manifest configuration for the other apps doesn't differ much from this configuration.
Any idea what might have happened and how to resolve it?
Thank you in advance for your attention.