How to zipalign the .apk file using eclipse?

前端 未结 8 1622
日久生厌
日久生厌 2020-12-13 01:29

Can anyone tell me how to zipalign my .apk file with using eclipse. I have made my .apk file by giving command like,

  1. Right Click on Project Folder

相关标签:
8条回答
  • 2020-12-13 02:09

    If you did what you described above then Eclipse has already zipaligned your apk for you. You can't zipalign an already zipaligned package

    0 讨论(0)
  • 2020-12-13 02:13

    I think this will help you

    D:\android-sdk\android-sdk\tools>zipalign -f -v 4 "C:\Users\name\Desktop\project_name\projectname_signed.apk" "C:\Users\name\Desktop\project_name\projectname__zipaligned.apk"
    
    0 讨论(0)
  • 2020-12-13 02:17

    Eclipse zipalign apk automatically. When you export the project, eclipse must be generating signed apk to a different destination. Check properly where it prompts when you generate a signed apk

    0 讨论(0)
  • 2020-12-13 02:18

    Eclipse automatically zipaligns your .apk file if you did what you described above.

    0 讨论(0)
  • 2020-12-13 02:24

    This is a very tricky part and initially i was also ran in to strange problems . Before uploading to android market you must do the following steps.

    • Create a Certificate
    • Signing your application apk
    • Finally Zip align the signed apk

    Check this site: How to sign Android project apk

    0 讨论(0)
  • 2020-12-13 02:25

    Eclipse zipalign APKs when you export them by default.

    zipalign is basically a tool available in tools directory of your android sdk.

    In case you are not using eclipse to build, you can use this tool directly to zipalign your apk.

    zipalign [-f] [-v] <alignment> infile.apk outfile.apk
    

    The alignment is an integer that defines the byte-alignment boundaries. This must always be 4 (which provides 32-bit alignment) or else it effectively does nothing.

    For more detail, check this link http://developer.android.com/tools/help/zipalign.html

    0 讨论(0)
提交回复
热议问题