Reputation: 15
Is it possible to convert apk file produced for Android to ipa file for Iphone?
Upvotes: 0
Views: 29570
Reputation: 36
It cannot be transformed, but you can generate it from ionic, since ionic is a hybrid platform, therefore you can generate from there a version for android and another for iOS.
You can see a way here
Upvotes: 1
Reputation: 304
In short, the answer is No.
APK and IPA are extensions that will serve different platforms and their architecture won't be the same, too.
You can try hybrid app development to add platforms: android and ios at the same time. Example: Flutter, React Native, Ionic, Cordova
Upvotes: 1
Reputation: 1271
Android apk can't be converted to iOS ipa. Only possibility is either you devlop cross platform(xamrin/react native/ionic/flutter) app project which can share common code and some android/ios platform specific code.
Upvotes: 1