public static void Build()
        {
            BuildRunner runner = new GooglePlayFreeBuildRunner();

            runner.OnPreprocess  = GooglePlayFreeBuildProcessor.OnPreprocess;
            runner.OnPostprocess = GooglePlayFreeBuildProcessor.OnPostprocess;
            runner.Run();
        }
        public static void BuildAndRun()
        {
            BuildRunner runner = new GooglePlayFreeBuildRunner();

            runner.BuildOptions = (
                BuildOptions.AutoRunPlayer
                );
            runner.OnPreprocess  = GooglePlayFreeBuildProcessor.OnPreprocess;
            runner.OnPostprocess = GooglePlayFreeBuildProcessor.OnPostprocess;
            runner.Run();
        }
        public static void BuildAndRunProfiler()
        {
            BuildRunner runner = new GooglePlayFreeBuildRunner();

            runner.BuildOptions = (
                BuildOptions.AutoRunPlayer |
                BuildOptions.Development |
                BuildOptions.ConnectWithProfiler |
                BuildOptions.AllowDebugging
                );
            runner.OnPreprocess  = GooglePlayFreeBuildProcessor.OnPreprocess;
            runner.OnPostprocess = GooglePlayFreeBuildProcessor.OnPostprocess;
            runner.Run();
        }