IOS应用程序文件大小

时间:2015-12-07 04:17:05

标签: ios bitcode

我的任务是比较源代码构建和应用程序商店部署应用程序的大小(两者都是理智的应用程序)。

我已经在MAC中生成了源代码构建的IPA文件。 其文件大小为 private void setupCameraIntentHelper() { mCameraIntentHelper = new CameraIntentHelper(this, new CameraIntentHelperCallback() { @Override public void onPhotoUriFound(Date dateCameraIntentStarted, Uri photoUri, int rotateXDegrees) { messageView.setText(getString(R.string.activity_camera_intent_photo_uri_found) + photoUri.toString()); Bitmap photo = BitmapHelper.readBitmap(CameraIntentActivity.this, photoUri); if (photo != null) { photo = BitmapHelper.shrinkBitmap(photo, 300, rotateXDegrees); ImageView imageView = (ImageView) findViewById(de.ecotastic.android.camerautil.sample.R.id.activity_camera_intent_image_view); imageView.setImageBitmap(photo); } } @Override public void deletePhotoWithUri(Uri photoUri) { BitmapHelper.deleteImageWithUriIfExists(photoUri, CameraIntentActivity.this); } @Override public void onSdCardNotMounted() { Toast.makeText(getApplicationContext(), getString(R.string.error_sd_card_not_mounted), Toast.LENGTH_LONG).show(); } @Override public void onCanceled() { Toast.makeText(getApplicationContext(), getString(R.string.warning_camera_intent_canceled), Toast.LENGTH_LONG).show(); } @Override public void onCouldNotTakePhoto() { Toast.makeText(getApplicationContext(), getString(R.string.error_could_not_take_photo), Toast.LENGTH_LONG).show(); } @Override public void onPhotoUriNotFound() { messageView.setText(getString(R.string.activity_camera_intent_photo_uri_not_found)); } @Override public void logException(Exception e) { Toast.makeText(getApplicationContext(), getString(R.string.error_sth_went_wrong), Toast.LENGTH_LONG).show(); Log.d(getClass().getName(), e.getMessage()); } }); } @Override protected void onSaveInstanceState(Bundle savedInstanceState) { super.onSaveInstanceState(savedInstanceState); mCameraIntentHelper.onSaveInstanceState(savedInstanceState); } @Override protected void onRestoreInstanceState(Bundle savedInstanceState) { super.onRestoreInstanceState(savedInstanceState); mCameraIntentHelper.onRestoreInstanceState(savedInstanceState); } @Override protected void onActivityResult(int requestCode, int resultCode, Intent intent) { super.onActivityResult(requestCode, resultCode, intent); mCameraIntentHelper.onActivityResult(requestCode, resultCode, intent); } }

在应用商店中,同一应用的大小为29 mb.

如何比较两者的大小?

1 个答案:

答案 0 :(得分:0)

检查项目设置。

我猜这与 bitcode (actually disabled)和应用程序细化有关。

检查它们是否相同(类似arm64,armv7和arm7s)。您在VALID_ARCHS中提供的越多,归档后将获得更大的ipa。

1)ARMv8 / ARM64:iPhone 6,iPhone 5s,iPad Air,Retina iPad Mini

2)ARMv7s:iPhone 5,iPhone 5c,iPad 4

3)ARMv7:iPhone 3GS,iPhone 4,iPhone 4S,iPod 3G / 4G / 5G,iPad,iPad 2,iPad 3,iPad Mini

4)ARMv6:iPhone,iPhone 3G,iPod 1G / 2G