From 7184085e89a7179054addfb14f3121ca99c46020 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20F=C3=A9ron?= Date: Tue, 19 Sep 2023 15:53:52 +0200 Subject: [PATCH] Reset example files --- examples/basic/MODULE.bazel | 7 +++++++ examples/basic/WORKSPACE | 5 +---- 2 files changed, 8 insertions(+), 4 deletions(-) create mode 100644 examples/basic/MODULE.bazel diff --git a/examples/basic/MODULE.bazel b/examples/basic/MODULE.bazel new file mode 100644 index 0000000..5377318 --- /dev/null +++ b/examples/basic/MODULE.bazel @@ -0,0 +1,7 @@ +module(name = "basic_example") + +bazel_dep(name = "rules_android_ndk") +local_path_override( + module_name = "rules_android_ndk", + path = "../..", +) diff --git a/examples/basic/WORKSPACE b/examples/basic/WORKSPACE index 9ab1992..703df1b 100644 --- a/examples/basic/WORKSPACE +++ b/examples/basic/WORKSPACE @@ -9,7 +9,4 @@ local_repository( load("@rules_android_ndk//:rules.bzl", "android_ndk_repository") -android_ndk_repository( - name = "androidndk", - version = "r25c", -) +android_ndk_repository(name = "androidndk")