最終更新:2016-10-20 (木) 11:46:19 (2748d)  

APP_OPTIM
Top / APP_OPTIM

debugかreleaseを指定(releaseがデフォルト)

You use it to alter the optimization level when building your application's modules.

メモ

  • Release mode is the default, and generates highly optimized binaries.
  • Debug mode generates unoptimized binaries that are much easier to debug.

メモ

  • Declaring android:debuggable in your application manifest's <application> tag will cause this variable to default to debug instead of release. Override this default value by setting APP_OPTIM to release.

関連

  • APP_DEBUGGABLE?

参考