문제

I want to submit an iOS app to the AppStore but I have made some very cool technology and I want the code to be protected, is the IPA encrypted in any way or can anyone view my code? How can I encrypt it?

도움이 되었습니까?

해결책

An IPA is just a zip file. Inside the IPA is your compiled app - it's encrypted. But it has to be decrypted to be used. If someone is interested then they can get a copy of your app, decrypt it and read through the compiled code (the machine code). You can't stop them doing this (well, only if you never release the app). People can't just read the code though. There's also no way you can prevent someone from looking at your app and going and creating their own version from scratch.

다른 팁

My understanding is that the application binary is already encrypted by the time it gets to a user device but this is only the binary and the machine code can still be accessed.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top