Search code examples
androidiosapkipamobile-application

Is it safe to give my APK and API files to my customers?


I created ios and android apps, so now i have to deliver to my customer in IPA and APK file formate.

I want to know, is it possible for them to extract the ipa and apk files and get into my main codes ?

Friends please educate me. Thanks guys.


Solution

  • For android,

    Consider enabling your ProGuard

    ProGuard obfuscates your code by removing unused code and renaming classes, fields, and methods with semantically obscure names which make the code base, smaller and more efficient. The result is a smaller sized .apk file that is more difficult to reverse engineer.

    to enable proguard

    set minifyEnabled to true and add rules you need on proguard-rules.pro file.

    Useful reference https://developer.android.com/studio/build/shrink-code

    For iOS

    I don't think there is an easy way to reverse engineer an ipa file