@nativescript/android 8.8.1-next.2024-07-10-9868653109 → 8.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -192,11 +192,14 @@ def computeNamespace = { ->
192
192
 
193
193
  def appIdentifier = ""
194
194
 
195
- if (packageJsonMap && packageJsonMap.id) {
196
- appIdentifier = packageJsonMap.id
195
+ if (packageJsonMap) {
196
+ if (packageJsonMap.android && packageJsonMap.android.id) {
197
+ appIdentifier = packageJsonMap.android.id
198
+ } else if (packageJsonMap.id) {
199
+ appIdentifier = packageJsonMap.id
200
+ }
197
201
  }
198
202
 
199
-
200
203
  if (appIdentifier) {
201
204
  return appIdentifier
202
205
  }