Skip to content

Commit c33d162

Browse files
Mobile Ads Developer Relationscopybara-github
authored andcommitted
No public description
PiperOrigin-RevId: 831411096
1 parent 110ccad commit c33d162

File tree

1 file changed

+26
-2
lines changed

1 file changed

+26
-2
lines changed

rapid_workflow_parameters.ncl renamed to admob_unity_rapid.ncl

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
1+
local include "gmscore/release/blueprint/gmscore_flags.ncl";
12
include "releasetools/rapid/ncl/rapid_config.ncl";
3+
include "devtools/blueprint/ncl/blueprint_file.ncl";
24

3-
namespace AdMobUnityWorkflowParameters {
5+
namespace AdMobUnityRapid {
6+
7+
UNITY_PLUGIN_IOS_FLAGS = [
8+
"--config=ios_common",
9+
"--ios_multi_cpus=arm64,x86_64",
10+
"--ios_minimum_os=14.0",
11+
];
412

513
DEFAULT_TARGET_UNITY_VERSION = "6000.1";
614
// TODO(jochac): Bump to API 36.
@@ -52,4 +60,20 @@ SHARED_BUILD_AND_TEST_WORKFLOW_PARAMETERS = [
5260
),
5361
] + [USE_UNITY_PACKAGE_WORKFLOW_PARAMETER];
5462

55-
} // namespace AdMobUnityWorkflowParameters
63+
// Dev variant.
64+
admob_unity_plugin_build = ::blueprint::BuildableUnit(
65+
// LINT.IfChange
66+
name = "admob_unity_plugin_build",
67+
// LINT.ThenChange(//depot/google3/third_party/java_src/gma_sdk_mediation/release/rapid/workflows/unity/build_unity_apk.pp)
68+
build_patterns = [
69+
"//java/com/google/android/libraries/admob/demo/unity/googlemobileads:unitypackage_public",
70+
"//java/com/google/android/libraries/admob/demo/unity/googlemobileads:upm_package",
71+
],
72+
build_flags = GMSCoreFlags::SDK_BUILD_FLAGS + UNITY_PLUGIN_IOS_FLAGS
73+
+ ["--define=build_type=dev"],
74+
continuous_build_email = ::blueprint::ContinuousBuildEmailInfo(
75+
build_cop_email_addrs = ["vkini@google.com", "jochac@google.com"]),
76+
enable_release = true, // Enabled so it can be pulled by GMS Core during FDR
77+
);
78+
79+
} // namespace AdMobUnityRapid

0 commit comments

Comments
 (0)