forked from juicycleff/flutter-unity-view-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.cs
784 lines (649 loc) · 32.1 KB
/
Build.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
using System;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using UnityEditor;
using UnityEngine;
using Application = UnityEngine.Application;
using BuildResult = UnityEditor.Build.Reporting.BuildResult;
// uncomment for addressables
//using UnityEditor.AddressableAssets;
//using UnityEditor.AddressableAssets.Settings;
namespace FlutterUnityIntegration.Editor
{
public class Build : EditorWindow
{
private static readonly string ProjectPath = Path.GetFullPath(Path.Combine(Application.dataPath, ".."));
private static readonly string APKPath = Path.Combine(ProjectPath, "Builds/" + Application.productName + ".apk");
private static readonly string AndroidExportPath = Path.GetFullPath(Path.Combine(ProjectPath, "../../android/unityLibrary"));
private static readonly string WindowsExportPath = Path.GetFullPath(Path.Combine(ProjectPath, "../../windows/unityLibrary/data"));
private static readonly string IOSExportPath = Path.GetFullPath(Path.Combine(ProjectPath, "../../ios/UnityLibrary"));
private static readonly string WebExportPath = Path.GetFullPath(Path.Combine(ProjectPath, "../../web/UnityLibrary"));
private static readonly string IOSExportPluginPath = Path.GetFullPath(Path.Combine(ProjectPath, "../../ios_xcode/UnityLibrary"));
private bool _pluginMode = false;
private static string _persistentKey = "flutter-unity-widget-pluginMode";
//#region GUI Member Methods
[MenuItem("Flutter/Export Android (Debug) %&n", false, 101)]
public static void DoBuildAndroidLibraryDebug()
{
DoBuildAndroid(Path.Combine(APKPath, "unityLibrary"), false, false);
// Copy over resources from the launcher module that are used by the library
Copy(Path.Combine(APKPath + "/launcher/src/main/res"), Path.Combine(AndroidExportPath, "src/main/res"));
}
[MenuItem("Flutter/Export Android (Release) %&m", false, 102)]
public static void DoBuildAndroidLibraryRelease()
{
DoBuildAndroid(Path.Combine(APKPath, "unityLibrary"), false, true);
// Copy over resources from the launcher module that are used by the library
Copy(Path.Combine(APKPath + "/launcher/src/main/res"), Path.Combine(AndroidExportPath, "src/main/res"));
}
[MenuItem("Flutter/Export Android Plugin %&p", false, 103)]
public static void DoBuildAndroidPlugin()
{
DoBuildAndroid(Path.Combine(APKPath, "unityLibrary"), true, true);
// Copy over resources from the launcher module that are used by the library
Copy(Path.Combine(APKPath + "/launcher/src/main/res"), Path.Combine(AndroidExportPath, "src/main/res"));
}
[MenuItem("Flutter/Export IOS (Debug) %&i", false, 201)]
public static void DoBuildIOSDebug()
{
BuildIOS(IOSExportPath, false);
}
[MenuItem("Flutter/Export IOS (Release) %&i", false, 202)]
public static void DoBuildIOSRelease() {
BuildIOS(IOSExportPath, true);
}
[MenuItem("Flutter/Export IOS Plugin %&o", false, 203)]
public static void DoBuildIOSPlugin()
{
BuildIOS(IOSExportPluginPath, true);
// Automate so manual steps
SetupIOSProjectForPlugin();
// Build Archive
// BuildUnityFrameworkArchive();
}
[MenuItem("Flutter/Export Web GL %&w", false, 301)]
public static void DoBuildWebGL()
{
BuildWebGL(WebExportPath);
}
// Hide this button as windows isn't implemented in the Flutter plugin yet.
// [MenuItem("Flutter/Export Windows %&d", false, 401)]
public static void DoBuildWindowsOS()
{
BuildWindowsOS(WindowsExportPath);
}
[MenuItem("Flutter/Settings %&S", false, 501)]
public static void PluginSettings()
{
EditorWindow.GetWindow(typeof(Build));
}
private void OnGUI()
{
GUILayout.Label("Flutter Unity Widget Settings", EditorStyles.boldLabel);
EditorGUI.BeginChangeCheck();
_pluginMode = EditorGUILayout.Toggle("Plugin Mode", _pluginMode);
if (EditorGUI.EndChangeCheck())
{
EditorPrefs.SetBool(_persistentKey, _pluginMode);
}
}
private void OnEnable()
{
_pluginMode = EditorPrefs.GetBool(_persistentKey, false);
}
//#endregion
//#region Build Member Methods
private static void BuildWindowsOS(String path)
{
// Switch to Android standalone build.
EditorUserBuildSettings.SwitchActiveBuildTarget(BuildTargetGroup.Android, BuildTarget.Android);
if (Directory.Exists(path))
Directory.Delete(path, true);
if (Directory.Exists(WindowsExportPath))
Directory.Delete(WindowsExportPath, true);
var playerOptions = new BuildPlayerOptions
{
scenes = GetEnabledScenes(),
target = BuildTarget.StandaloneWindows64,
locationPathName = path,
options = BuildOptions.AllowDebugging
};
// Switch to Android standalone build.
EditorUserBuildSettings.SwitchActiveBuildTarget(BuildTargetGroup.Standalone, BuildTarget.StandaloneWindows64);
// build addressable
ExportAddressables();
var report = BuildPipeline.BuildPlayer(playerOptions);
if (report.summary.result != BuildResult.Succeeded)
throw new Exception("Build failed");
Debug.Log("-- Windows Build: SUCCESSFUL --");
}
private static void BuildWebGL(String path)
{
// Switch to Android standalone build.
EditorUserBuildSettings.SwitchActiveBuildTarget(BuildTargetGroup.Android, BuildTarget.Android);
if (Directory.Exists(path))
Directory.Delete(path, true);
if (Directory.Exists(WebExportPath))
Directory.Delete(WebExportPath, true);
// EditorUserBuildSettings. = true;
var playerOptions = new BuildPlayerOptions();
playerOptions.scenes = GetEnabledScenes();
playerOptions.target = BuildTarget.WebGL;
playerOptions.locationPathName = path;
// Switch to Android standalone build.
EditorUserBuildSettings.SwitchActiveBuildTarget(BuildTargetGroup.WebGL, BuildTarget.WebGL);
// build addressable
ExportAddressables();
var report = BuildPipeline.BuildPlayer(playerOptions);
if (report.summary.result != BuildResult.Succeeded)
throw new Exception("Build failed");
// Copy(path, WebExportPath);
ModifyWebGLExport();
Debug.Log("-- WebGL Build: SUCCESSFUL --");
}
private static void DoBuildAndroid(String buildPath, bool isPlugin, bool isReleaseBuild)
{
// Switch to Android standalone build.
EditorUserBuildSettings.SwitchActiveBuildTarget(BuildTargetGroup.Android, BuildTarget.Android);
if (Directory.Exists(APKPath))
Directory.Delete(APKPath, true);
if (Directory.Exists(AndroidExportPath))
Directory.Delete(AndroidExportPath, true);
EditorUserBuildSettings.androidBuildSystem = AndroidBuildSystem.Gradle;
EditorUserBuildSettings.exportAsGoogleAndroidProject = true;
var playerOptions = new BuildPlayerOptions();
playerOptions.scenes = GetEnabledScenes();
playerOptions.target = BuildTarget.Android;
playerOptions.locationPathName = APKPath;
if (!isReleaseBuild)
{
// remove this line if you don't use a debugger and you want to speed up the flutter build
playerOptions.options = BuildOptions.AllowDebugging | BuildOptions.Development;
}
#if UNITY_2022_1_OR_NEWER
PlayerSettings.SetIl2CppCompilerConfiguration(BuildTargetGroup.Android, isReleaseBuild ? Il2CppCompilerConfiguration.Release : Il2CppCompilerConfiguration.Debug);
PlayerSettings.SetIl2CppCodeGeneration(UnityEditor.Build.NamedBuildTarget.Android, UnityEditor.Build.Il2CppCodeGeneration.OptimizeSize);
#elif UNITY_2021_2_OR_NEWER
PlayerSettings.SetIl2CppCompilerConfiguration(BuildTargetGroup.Android, isReleaseBuild ? Il2CppCompilerConfiguration.Release : Il2CppCompilerConfiguration.Debug);
EditorUserBuildSettings.il2CppCodeGeneration = UnityEditor.Build.Il2CppCodeGeneration.OptimizeSize;
#endif
// Switch to Android standalone build.
EditorUserBuildSettings.SwitchActiveBuildTarget(BuildTargetGroup.Android, BuildTarget.Android);
// build addressable
ExportAddressables();
var report = BuildPipeline.BuildPlayer(playerOptions);
if (report.summary.result != BuildResult.Succeeded)
throw new Exception("Build failed");
Copy(buildPath, AndroidExportPath);
// Modify build.gradle
ModifyAndroidGradle(isPlugin);
if(isPlugin)
{
SetupAndroidProjectForPlugin();
} else
{
SetupAndroidProject();
}
if (isReleaseBuild) {
Debug.Log($"-- Android Release Build: SUCCESSFUL --");
} else
{
Debug.Log($"-- Android Debug Build: SUCCESSFUL --");
}
}
private static void ModifyWebGLExport()
{
// Modify index.html
var indexFile = Path.Combine(WebExportPath, "index.html");
var indexHtmlText = File.ReadAllText(indexFile);
indexHtmlText = indexHtmlText.Replace("<script>", @"
<script>
var mainUnityInstance;
window['handleUnityMessage'] = function (params) {
window.parent.postMessage({
name: 'onUnityMessage',
data: params,
}, '*');
};
window['handleUnitySceneLoaded'] = function (name, buildIndex, isLoaded, isValid) {
window.parent.postMessage({
name: 'onUnitySceneLoaded',
data: {
'name': name,
'buildIndex': buildIndex,
'isLoaded': isLoaded == 1,
'isValid': isValid == 1,
}
}, '*');
};
window.parent.addEventListener('unityFlutterBiding', function (args) {
const obj = JSON.parse(args.data);
mainUnityInstance.SendMessage(obj.gameObject, obj.methodName, obj.message);
});
window.parent.addEventListener('unityFlutterBidingFnCal', function (args) {
mainUnityInstance.SendMessage('GameManager', 'HandleWebFnCall', args);
});
");
indexHtmlText = indexHtmlText.Replace("canvas.style.width = \"960px\";", "canvas.style.width = \"100%\";");
indexHtmlText = indexHtmlText.Replace("canvas.style.height = \"600px\";", "canvas.style.height = \"100%\";");
indexHtmlText = indexHtmlText.Replace("}).then((unityInstance) => {", @"
}).then((unityInstance) => {
window.parent.postMessage('unityReady', '*');
mainUnityInstance = unityInstance;
");
File.WriteAllText(indexFile, indexHtmlText);
/// Modidy style.css
var cssFile = Path.Combine($"{WebExportPath}/TemplateData", "style.css");
var fullScreenCss = File.ReadAllText(cssFile);
fullScreenCss = @"
body { padding: 0; margin: 0; overflow: hidden; }
#unity-container { position: absolute }
#unity-container.unity-desktop { width: 100%; height: 100% }
#unity-container.unity-mobile { width: 100%; height: 100% }
#unity-canvas { background: #231F20 }
.unity-mobile #unity-canvas { width: 100%; height: 100% }
#unity-loading-bar { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: none }
#unity-logo { width: 154px; height: 130px; background: url('unity-logo-dark.png') no-repeat center }
#unity-progress-bar-empty { width: 141px; height: 18px; margin-top: 10px; background: url('progress-bar-empty-dark.png') no-repeat center }
#unity-progress-bar-full { width: 0%; height: 18px; margin-top: 10px; background: url('progress-bar-full-dark.png') no-repeat center }
#unity-footer { display: none }
.unity-mobile #unity-footer { display: none }
#unity-webgl-logo { float:left; width: 204px; height: 38px; background: url('webgl-logo.png') no-repeat center }
#unity-build-title { float: right; margin-right: 10px; line-height: 38px; font-family: arial; font-size: 18px }
#unity-fullscreen-button { float: right; width: 38px; height: 38px; background: url('fullscreen-button.png') no-repeat center }
#unity-mobile-warning { position: absolute; left: 50%; top: 5%; transform: translate(-50%); background: white; padding: 10px; display: none }
";
File.WriteAllText(cssFile, fullScreenCss);
}
private static void ModifyAndroidGradle(bool isPlugin)
{
// Modify build.gradle
var buildFile = Path.Combine(AndroidExportPath, "build.gradle");
var buildText = File.ReadAllText(buildFile);
buildText = buildText.Replace("com.android.application", "com.android.library");
buildText = buildText.Replace("bundle {", "splits {");
buildText = buildText.Replace("enableSplit = false", "enable false");
buildText = buildText.Replace("enableSplit = true", "enable true");
buildText = buildText.Replace("implementation fileTree(dir: 'libs', include: ['*.jar'])", "implementation(name: 'unity-classes', ext:'jar')");
buildText = buildText.Replace(" + unityStreamingAssets.tokenize(', ')", "");
buildText = Regex.Replace(buildText, "ndkPath \".*\"", "");
// check for namespace definition (Android gradle plugin 8+), add a backwards compatible version if it is missing.
if(!buildText.Contains("namespace"))
{
buildText = buildText.Replace("compileOptions {",
"if (project.android.hasProperty(\"namespace\")) {\n namespace 'com.unity3d.player'\n }\n\n compileOptions {"
);
}
if(isPlugin)
{
buildText = Regex.Replace(buildText, @"implementation\(name: 'androidx.* ext:'aar'\)", "\n");
}
buildText = Regex.Replace(buildText, @"\n.*applicationId '.+'.*\n", "\n");
File.WriteAllText(buildFile, buildText);
// Modify AndroidManifest.xml
var manifestFile = Path.Combine(AndroidExportPath, "src/main/AndroidManifest.xml");
var manifestText = File.ReadAllText(manifestFile);
manifestText = Regex.Replace(manifestText, @"<application .*>", "<application>");
var regex = new Regex(@"<activity.*>(\s|\S)+?</activity>", RegexOptions.Multiline);
manifestText = regex.Replace(manifestText, "");
File.WriteAllText(manifestFile, manifestText);
// Modify proguard-unity.txt
var proguardFile = Path.Combine(AndroidExportPath, "proguard-unity.txt");
var proguardText = File.ReadAllText(proguardFile);
proguardText = proguardText.Replace("-ignorewarnings", "-keep class com.xraph.plugin.** { *; }\n-keep class com.unity3d.plugin.* { *; }\n-ignorewarnings");
File.WriteAllText(proguardFile, proguardText);
}
private static void BuildIOS(String path, bool isReleaseBuild)
{
bool abortBuild = false;
// abort iOS export if #UNITY_IOS is false.
// Even after SwitchActiveBuildTarget() it will still be false as the code isn't recompiled yet.
// As a workaround, make the user trigger an export again after the switch.
#if !UNITY_IOS
abortBuild = true;
if (Application.isBatchMode)
{
Debug.LogError("Incorrect iOS buildtarget, use the -buildTarget argument to set iOS");
}
else
{
bool dialogResult = EditorUtility.DisplayDialog(
"Switch build target to iOS?",
"Exporting to iOS first requires a build target switch.\nClick 'Export iOS' again after all importing has finished.",
"Switch to iOS",
"Cancel"
);
if (dialogResult)
{
EditorUserBuildSettings.SwitchActiveBuildTarget(BuildTargetGroup.iOS, BuildTarget.iOS);
}
}
#endif
//don't return within #if !UNITY_IOS as that results in unreachable code warnings.
if (abortBuild)
return;
if (Directory.Exists(path))
Directory.Delete(path, true);
#if (UNITY_2021_1_OR_NEWER)
EditorUserBuildSettings.iOSXcodeBuildConfig = XcodeBuildConfig.Release;
#else
EditorUserBuildSettings.iOSBuildConfigType = iOSBuildType.Release;
#endif
#if UNITY_2022_1_OR_NEWER
PlayerSettings.SetIl2CppCompilerConfiguration(BuildTargetGroup.iOS, isReleaseBuild ? Il2CppCompilerConfiguration.Release : Il2CppCompilerConfiguration.Debug);
PlayerSettings.SetIl2CppCodeGeneration(UnityEditor.Build.NamedBuildTarget.iOS, UnityEditor.Build.Il2CppCodeGeneration.OptimizeSize);
#elif UNITY_2021_2_OR_NEWER
PlayerSettings.SetIl2CppCompilerConfiguration(BuildTargetGroup.iOS, isReleaseBuild ? Il2CppCompilerConfiguration.Release : Il2CppCompilerConfiguration.Debug);
EditorUserBuildSettings.il2CppCodeGeneration = UnityEditor.Build.Il2CppCodeGeneration.OptimizeSize;
#endif
var playerOptions = new BuildPlayerOptions
{
scenes = GetEnabledScenes(),
target = BuildTarget.iOS,
locationPathName = path
};
if (!isReleaseBuild)
{
playerOptions.options = BuildOptions.AllowDebugging | BuildOptions.Development;
}
// build addressable
ExportAddressables();
var report = BuildPipeline.BuildPlayer(playerOptions);
if (report.summary.result != BuildResult.Succeeded)
throw new Exception("Build failed");
// log an error if this code is skipped. (might happen when buildtarget is switched from code)
bool postBuildExecuted = false;
#if UNITY_IOS
XcodePostBuild.PostBuild(BuildTarget.iOS, report.summary.outputPath);
postBuildExecuted = true;
#endif
if (postBuildExecuted)
{
if (isReleaseBuild)
{
Debug.Log("-- iOS Release Build: SUCCESSFUL --");
}
else
{
Debug.Log("-- iOS Debug Build: SUCCESSFUL --");
}
} else
{
Debug.LogError("iOS export failed. Failed to modify Unity's Xcode project.");
}
}
//#endregion
//#region Other Member Methods
private static void Copy(string source, string destinationPath)
{
if (Directory.Exists(destinationPath))
Directory.Delete(destinationPath, true);
Directory.CreateDirectory(destinationPath);
foreach (var dirPath in Directory.GetDirectories(source, "*",
SearchOption.AllDirectories))
Directory.CreateDirectory(dirPath.Replace(source, destinationPath));
foreach (var newPath in Directory.GetFiles(source, "*.*",
SearchOption.AllDirectories))
File.Copy(newPath, newPath.Replace(source, destinationPath), true);
}
private static string[] GetEnabledScenes()
{
var scenes = EditorBuildSettings.scenes
.Where(s => s.enabled)
.Select(s => s.path)
.ToArray();
return scenes;
}
// uncomment for addressables
private static void ExportAddressables() {
/*
Debug.Log("Start building player content (Addressables)");
Debug.Log("BuildAddressablesProcessor.PreExport start");
AddressableAssetSettings.CleanPlayerContent(
AddressableAssetSettingsDefaultObject.Settings.ActivePlayerDataBuilder);
AddressableAssetProfileSettings profileSettings = AddressableAssetSettingsDefaultObject.Settings.profileSettings;
string profileId = profileSettings.GetProfileId("Default");
AddressableAssetSettingsDefaultObject.Settings.activeProfileId = profileId;
AddressableAssetSettings.BuildPlayerContent();
Debug.Log("BuildAddressablesProcessor.PreExport done");
*/
}
/// <summary>
/// This method tries to autome the build setup required for Android
/// </summary>
private static void SetupAndroidProject()
{
var androidPath = Path.GetFullPath(Path.Combine(ProjectPath, "../../android"));
var androidAppPath = Path.GetFullPath(Path.Combine(ProjectPath, "../../android/app"));
var projBuildPath = Path.Combine(androidPath, "build.gradle");
var appBuildPath = Path.Combine(androidAppPath, "build.gradle");
var settingsPath = Path.Combine(androidPath, "settings.gradle");
// switch to Kotlin DSL gradle if .kts file is detected (Fluter 3.29+ by default)
if (File.Exists(projBuildPath + ".kts")) {
SetupAndroidProjectKotlin();
return;
}
var projBuildScript = File.ReadAllText(projBuildPath);
var settingsScript = File.ReadAllText(settingsPath);
var appBuildScript = File.ReadAllText(appBuildPath);
// Sets up the project build.gradle files correctly
if (!Regex.IsMatch(projBuildScript, @"flatDir[^/]*[^}]*}"))
{
var regex = new Regex(@"allprojects \{[^\{]*\{", RegexOptions.Multiline);
projBuildScript = regex.Replace(projBuildScript, @"
allprojects {
repositories {
flatDir {
dirs ""${project(':unityLibrary').projectDir}/libs""
}
");
File.WriteAllText(projBuildPath, projBuildScript);
}
// Sets up the project settings.gradle files correctly
if (!Regex.IsMatch(settingsScript, @"include "":unityLibrary"""))
{
settingsScript += @"
include "":unityLibrary""
project("":unityLibrary"").projectDir = file(""./unityLibrary"")
";
File.WriteAllText(settingsPath, settingsScript);
}
// Sets up the project app build.gradle files correctly
if (!Regex.IsMatch(appBuildScript, @"dependencies \{"))
{
appBuildScript += @"
dependencies {
implementation project(':unityLibrary')
}
";
File.WriteAllText(appBuildPath, appBuildScript);
} else
{
if (!appBuildScript.Contains(@"implementation project(':unityLibrary')"))
{
var regex = new Regex(@"dependencies \{", RegexOptions.Multiline);
appBuildScript = regex.Replace(appBuildScript, @"
dependencies {
implementation project(':unityLibrary')
");
File.WriteAllText(appBuildPath, appBuildScript);
}
}
}
// Copy of SetupAndroidProject() adapted to Kotlin DLS .gradle.kts. Generated since Flutter 3.29
private static void SetupAndroidProjectKotlin()
{
var androidPath = Path.GetFullPath(Path.Combine(ProjectPath, "../../android"));
var androidAppPath = Path.GetFullPath(Path.Combine(ProjectPath, "../../android/app"));
var projBuildPath = Path.Combine(androidPath, "build.gradle.kts");
var appBuildPath = Path.Combine(androidAppPath, "build.gradle.kts");
var settingsPath = Path.Combine(androidPath, "settings.gradle.kts");
var projBuildScript = File.ReadAllText(projBuildPath);
var settingsScript = File.ReadAllText(settingsPath);
var appBuildScript = File.ReadAllText(appBuildPath);
// Sets up the project build.gradle files correctly
if (!Regex.IsMatch(projBuildScript, @"flatDir[^/]*[^}]*}"))
{
var regex = new Regex(@"allprojects \{[^\{]*\{", RegexOptions.Multiline);
projBuildScript = regex.Replace(projBuildScript, @"
allprojects {
repositories {
flatDir {
dirs(file(""${project("":unityLibrary"").projectDir}/libs""))
}
");
File.WriteAllText(projBuildPath, projBuildScript);
}
// Sets up the project settings.gradle files correctly
if (!Regex.IsMatch(settingsScript, @"include("":unityLibrary"")"))
{
settingsScript += @"
include("":unityLibrary"")
project("":unityLibrary"").projectDir = file(""./unityLibrary"")
";
File.WriteAllText(settingsPath, settingsScript);
}
// Sets up the project app build.gradle files correctly
if (!Regex.IsMatch(appBuildScript, @"dependencies \{"))
{
appBuildScript += @"
dependencies {
implementation(project("":unityLibrary""))
}
";
File.WriteAllText(appBuildPath, appBuildScript);
}
else
{
if (!appBuildScript.Contains(@"implementation(project("":unityLibrary"")"))
{
var regex = new Regex(@"dependencies \{", RegexOptions.Multiline);
appBuildScript = regex.Replace(appBuildScript, @"
dependencies {
implementation(project("":unityLibrary""))
");
File.WriteAllText(appBuildPath, appBuildScript);
}
}
}
/// <summary>
/// This method tries to autome the build setup required for Android
/// </summary>
private static void SetupAndroidProjectForPlugin()
{
var androidPath = Path.GetFullPath(Path.Combine(ProjectPath, "../../android"));
var projBuildPath = Path.Combine(androidPath, "build.gradle");
var settingsPath = Path.Combine(androidPath, "settings.gradle");
if (File.Exists(projBuildPath + ".kts")) {
SetupAndroidProjectForPluginKotlin();
return;
}
var projBuildScript = File.ReadAllText(projBuildPath);
var settingsScript = File.ReadAllText(settingsPath);
// Sets up the project build.gradle files correctly
if (Regex.IsMatch(projBuildScript, @"// BUILD_ADD_UNITY_LIBS"))
{
var regex = new Regex(@"// BUILD_ADD_UNITY_LIBS", RegexOptions.Multiline);
projBuildScript = regex.Replace(projBuildScript, @"
flatDir {
dirs ""${project(':unityLibrary').projectDir}/libs""
}
");
File.WriteAllText(projBuildPath, projBuildScript);
}
// Sets up the project settings.gradle files correctly
if (!Regex.IsMatch(settingsScript, @"include "":unityLibrary"""))
{
settingsScript += @"
include "":unityLibrary""
project("":unityLibrary"").projectDir = file(""./unityLibrary"")
";
File.WriteAllText(settingsPath, settingsScript);
}
}
// Copy of SetupAndroidProjectForPlugin() adapted to Kotlin DLS .gradle.kts. Generated since Flutter 3.29
private static void SetupAndroidProjectForPluginKotlin()
{
var androidPath = Path.GetFullPath(Path.Combine(ProjectPath, "../../android"));
var projBuildPath = Path.Combine(androidPath, "build.gradle.kts");
var settingsPath = Path.Combine(androidPath, "settings.gradle.kts");
var projBuildScript = File.ReadAllText(projBuildPath);
var settingsScript = File.ReadAllText(settingsPath);
// Sets up the project build.gradle files correctly
if (Regex.IsMatch(projBuildScript, @"// BUILD_ADD_UNITY_LIBS"))
{
var regex = new Regex(@"// BUILD_ADD_UNITY_LIBS", RegexOptions.Multiline);
projBuildScript = regex.Replace(projBuildScript, @"
flatDir {
dirs(file(""${project("":unityLibrary"").projectDir}/libs""))
}
");
File.WriteAllText(projBuildPath, projBuildScript);
}
// Sets up the project settings.gradle files correctly
if (!Regex.IsMatch(settingsScript, @"include("":unityLibrary"")"))
{
settingsScript += @"
include("":unityLibrary"")
project("":unityLibrary"").projectDir = file(""./unityLibrary"")
";
File.WriteAllText(settingsPath, settingsScript);
}
}
private static void SetupIOSProjectForPlugin()
{
var iosRunnerPath = Path.GetFullPath(Path.Combine(ProjectPath, "../../ios"));
var pubsecFile = Path.Combine(iosRunnerPath, "flutter_unity_widget.podspec");
var pubsecText = File.ReadAllText(pubsecFile);
if (!Regex.IsMatch(pubsecText, @"\w\.xcconfig(?:[^}]*})+") && !Regex.IsMatch(pubsecText, @"tar -xvjf UnityFramework.tar.bz2"))
{
var regex = new Regex(@"\w\.xcconfig(?:[^}]*})+", RegexOptions.Multiline);
pubsecText = regex.Replace(pubsecText, @"
spec.xcconfig = {
'FRAMEWORK_SEARCH_PATHS' => '""${PODS_ROOT}/../.symlinks/plugins/flutter_unity_widget/ios"" ""${PODS_ROOT}/../.symlinks/flutter/ios-release"" ""${PODS_CONFIGURATION_BUILD_DIR}""',
'OTHER_LDFLAGS' => '$(inherited) -framework UnityFramework \${PODS_LIBRARIES}'
}
spec.vendored_frameworks = ""UnityFramework.framework""
");
File.WriteAllText(pubsecFile, pubsecText);
}
}
// DO NOT USE (Contact before trying)
private static async void BuildUnityFrameworkArchive()
{
var xcprojectExt = "/Unity-iPhone.xcodeproj";
// check if we have a workspace or not
if (Directory.Exists(IOSExportPluginPath + "/Unity-iPhone.xcworkspace")) {
xcprojectExt = "/Unity-iPhone.xcworkspace";
}
const string framework = "UnityFramework";
var xcprojectName = $"{IOSExportPluginPath}{xcprojectExt}";
var schemeName = $"{framework}";
var buildPath = IOSExportPluginPath + "/build";
var frameworkNameWithExt = $"{framework}.framework";
var iosRunnerPath = Path.GetFullPath(Path.Combine(ProjectPath, "../../ios/"));
const string iosArchiveDir = "Release-iphoneos-archive";
var iosArchiveFrameworkPath = $"{buildPath}/{iosArchiveDir}/Products/Library/Frameworks/{frameworkNameWithExt}";
var dysmNameWithExt = $"{frameworkNameWithExt}.dSYM";
try
{
Debug.Log("### Cleaning up after old builds");
await $" - rf {iosRunnerPath}{frameworkNameWithExt}".Bash("rm");
await $" - rf {buildPath}".Bash("rm");
Debug.Log("### BUILDING FOR iOS");
Debug.Log("### Building for device (Archive)");
await $"archive -workspace {xcprojectName} -scheme {schemeName} -sdk iphoneos -archivePath {buildPath}/Release-iphoneos.xcarchive ENABLE_BITCODE=NO |xcpretty".Bash("xcodebuild");
Debug.Log("### Copying framework files");
await $" -RL {iosArchiveFrameworkPath} {iosRunnerPath}/{frameworkNameWithExt}".Bash("cp");
await $" -RL {iosArchiveFrameworkPath}/{dysmNameWithExt} {iosRunnerPath}/{dysmNameWithExt}".Bash("cp");
Debug.Log("### DONE ARCHIVING");
}
catch (Exception e)
{
Debug.Log(e);
}
}
//#endregion
}
}