2

ERROR ITMS-90733

The WatchApp target is using “armv7k” under valid architectures; and the WatchApp Extension is using both “armv7k” and “i386” under valid architectures.

When I build and try to deploy and build to the AppStoreConnect, I get the error message attached in this post.

I tried several combinations of arm64_32, armv7, and armv64 but no luck! Any help is much appreciated. Thank you.

mhamdouchi
  • 21
  • 6
  • Have the same issue. @mhamdouchi have you found a solution? – Davide Dec 31 '18 at 10:15
  • Not yet. I found a workaround for the moment. I use Xcode 10.1 for development because of the dark mode and few other features. And I use Xcode 9.4.1 for deployment using fastlane commands. I’m hoping that Apple come up with a solution in the next Xcode version!!! I’ll let you know if I find a solution before then. – mhamdouchi Jan 01 '19 at 16:00

3 Answers3

1

try add arm64_32 architecture in your watch extension build setting, not watch .

  • I tried adding arm6_32 to Watch extension under build settings, but I am still getting the same error message! – mhamdouchi Jan 14 '19 at 20:27
  • Do the valid architectures need to be ordered in a certain way? What I have at the moment is: armv7k, i386, arm6_32 – mhamdouchi Jan 14 '19 at 20:28
0

I solved the issue by switching the Build System setting from Legacy to "New Build System". You can find it by clicking File -> Workspace Settings of the Xcode.

Also you have to make sure that the Valid Architectures and Architectures settings were set to default values (just navigate to each and press backspace).

  • I did switch back to “New Build System”, and defaulted all my Valid Architecture using backspace. Now, I have a new error related to AdobeMobileLibrary: ld: warning: ignoring file .../AdobeMobileLibrary_Watch.a, missing required architecture arm64_32 in file .../AdobeMobileLibrary_Watch.a (3 slices) Undefined symbols for architecture arm64_32: "_OBJC_CLASS_$_ADBMobile", referenced from: objc-class-ref in WatchStore.o objc-class-ref in ExtensionDelegate.o objc-class-ref in SharedStore.o ld: symbol(s) not found for architecture arm64_32 – mhamdouchi Jan 25 '19 at 13:53
  • Do you use AdobeMobileLibrary in your WatchApp Extension? Just navigate to WatchApp Extension target, then Build Settings and look for the Other Linker Flags field. Remove all unnecessary libs from the field. – Konstantin Dorogan Jan 25 '19 at 14:03
-1

So I solved the problem by updating the AdobeMobileLibrary. Here is the link to files: https://github.com/Adobe-Marketing-Cloud/mobile-services/releases

mhamdouchi
  • 21
  • 6