File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed
Assets/AndroidIl2cppPatchDemo/Editor Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -430,6 +430,13 @@ public static void BuildWithoutPatch()
430
430
return ;
431
431
}
432
432
433
+ if ( ! BuildIl2cppSoLib ( ) )
434
+ {
435
+ Debug . LogError ( "failed to BuildIl2cppSoLig" ) ;
436
+ return ;
437
+ }
438
+
439
+
433
440
if ( ! PatchAndroidProject ( ) )
434
441
{
435
442
Debug . LogError ( "failed to PatchAndroidProject" ) ;
@@ -459,13 +466,19 @@ public static void BuildWithoutPatch()
459
466
[ MenuItem ( "AndroidBuilder/Run Step 1-5 for Patch Version" , false , 3 ) ]
460
467
public static void BuildPatch ( )
461
468
{
462
- //Step 1
463
469
if ( ! ExportGradleProject ( ) )
464
470
{
465
471
Debug . LogError ( "failed to ExportGradleProject" ) ;
466
472
return ;
467
473
}
468
474
475
+ if ( ! BuildIl2cppSoLib ( ) )
476
+ {
477
+ Debug . LogError ( "failed to BuildIl2cppSoLig" ) ;
478
+ return ;
479
+ }
480
+
481
+
469
482
if ( ! PatchAndroidProject ( ) )
470
483
{
471
484
Debug . LogError ( "failed to PatchAndroidProject" ) ;
You can’t perform that action at this time.
0 commit comments