Exemple #1
0
 /// <summary>
 /// Constructor.
 /// </summary>
 public AppBundleBuilder(
     AndroidAssetPackagingTool androidAssetPackagingTool,
     AndroidBuilder androidBuilder,
     BundletoolHelper bundletool,
     JarSigner jarSigner,
     string workingDirectoryPath,
     ZipUtils zipUtils)
 {
     _androidAssetPackagingTool = androidAssetPackagingTool;
     _androidBuilder            = androidBuilder;
     _bundletool           = bundletool;
     _jarSigner            = jarSigner;
     _workingDirectoryPath = workingDirectoryPath;
     _zipUtils             = zipUtils;
 }
 /// <summary>
 /// Constructor.
 /// </summary>
 public AppBundleBuilder(
     AndroidAssetPackagingTool androidAssetPackagingTool,
     AndroidBuilder androidBuilder,
     ApkSigner apkSigner,
     BundletoolHelper bundletool,
     ReleaseBuildHelper releaseBuildHelper,
     string workingDirectoryPath,
     ZipUtils zipUtils)
 {
     _androidAssetPackagingTool = androidAssetPackagingTool;
     _androidBuilder            = androidBuilder;
     _apkSigner            = apkSigner;
     _bundletool           = bundletool;
     _releaseBuildHelper   = releaseBuildHelper;
     _workingDirectoryPath = workingDirectoryPath;
     _zipUtils             = zipUtils;
 }
Exemple #3
0
 /// <summary>
 /// Constructor.
 /// </summary>
 public AppBundleRunner(AndroidDebugBridge adb, BundletoolHelper bundletool)
 {
     _adb        = adb;
     _bundletool = bundletool;
 }