0

I was trying to validate and upload my app to app store.But it ended up with a error as Error Missing 64-bit

I made changes by adding arm64 in valid architectures and standard architectures(armv7,arm64) - $(ARCHS_STANDARD) Build Active Architecture only - No

After adding this there was a error coming as " ('NSInteger' (aka 'long')) does not match type of instance variable 'stage' ('int') ".

I changed the int as "NSUinteger" and error as link command error.

Is my app doesn't support 64-bit??.

Vignesh
  • 35
  • 1
  • 8

1 Answers1

0

int --> NSInteger.

PS: int == signed int != unsigned int

Justlike
  • 1,476
  • 10
  • 18