How to develop iphone and android app simultaneously

Hi , i have created an app in unity for android. Im trying to move the same to iMac and load it in unity , so that i could use the same development components to develop an app for iPhone…What is the right procedure to do this

I transfered the project from my windows into mac and opened in unity and everything worked fine.When i built and ran, the code was loaded in Xcode , where the compilation took place and gave the following error .

Undefined symbols for architecture armv7:
"_SecItemAdd", referenced from:
  l2920 in libQCAR.a(libQCAR.a-armv7-master.o)
"_kSecReturnRef", referenced from:
  l2920 in libQCAR.a(libQCAR.a-armv7-master.o)
"_kSecValueData", referenced from:
  l2920 in libQCAR.a(libQCAR.a-armv7-master.o)
"_SecItemDelete", referenced from:
  l2920 in libQCAR.a(libQCAR.a-armv7-master.o)
"_SecKeyDecrypt", referenced from:
  l2920 in libQCAR.a(libQCAR.a-armv7-master.o)
"_kSecAttrKeyClass", referenced from:
  l2920 in libQCAR.a(libQCAR.a-armv7-master.o)
"_kSecAttrKeyClassPublic", referenced from:
  l2920 in libQCAR.a(libQCAR.a-armv7-master.o)
"_kSecClassKey", referenced from:
  l2920 in libQCAR.a(libQCAR.a-armv7-master.o)
"_SecItemCopyMatching", referenced from:
  l2920 in libQCAR.a(libQCAR.a-armv7-master.o)
"_kSecClass", referenced from:
  l2920 in libQCAR.a(libQCAR.a-armv7-master.o)
"_SecKeyGetBlockSize", referenced from:
  l2920 in libQCAR.a(libQCAR.a-armv7-master.o)
"_kSecAttrKeyTypeRSA", referenced from:
  l2920 in libQCAR.a(libQCAR.a-armv7-master.o)
"_kSecReturnPersistentRef", referenced from:
  l2920 in libQCAR.a(libQCAR.a-armv7-master.o)
"_kSecAttrCanDecrypt", referenced from:
  l2920 in libQCAR.a(libQCAR.a-armv7-master.o)
"_kSecAttrKeyType", referenced from:
  l2920 in libQCAR.a(libQCAR.a-armv7-master.o)
"_kSecAttrApplicationTag", referenced from:
  l2920 in libQCAR.a(libQCAR.a-armv7-master.o)
 ld: symbol(s) not found for architecture armv7
 clang: error: linker command failed with exit code 1 (use -v to see invocation)

select all assets in projects folder and Export it as a package (dont forget to include dependencies). Now you are good to go. Just extract the package in iMac. simple as that :slight_smile:

now you can start removing android specific codes and add iPhone ones!