So basicly, I have recently had to add support for...
# ios
j
So basicly, I have recently had to add support for armv7 and i have data classes that gets translated from json. These data classes contains Long i order to handle big values. Now trying to run this framework in xode I get
Copy code
Undefined symbols for architecture armv7:
  "_OBJC_CLASS_$_KotlinLong", referenced from:
      objc-class-ref in TestViewController.o
Is there anything to do about that?
a
Hello! Can you tell if this issue is gone while using any other numeric type?
j
Seems like the issue was quite easy to solve. The issue was that everything was built for arm64. This is because of my xcode project being setup a bit more different than what the tutorial provides
👍 1