Androidでのリリースではstoryboardなどのファイルが不要です。
CoronaプロジェクトをGitで管理しているなら、ビルドそのものに.gitディレクトリが邪魔になります。
そんなときにexcludeFilesを設定すれば、ビルド時のファイル除外ができます。
allがすべてのプラットフォームで有効にし、ios、androidとそれぞれ設定ができます。
1 2 3 4 5 6 7 |
excludeFiles = { -- Exclude unnecessary files for each platform all = { ".git/*", "*.keystore" }, ios = { "Icon.png", "Icon-*dpi.png", }, android = { "Icon.png", "Icon-??.png", "Icon-???.png", "LaunchScreen.storyboardc", }, }, |