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")