Skip to content

Instantly share code, notes, and snippets.

@Morfly
Last active February 21, 2022 04:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Morfly/e43ac1c028a0e08d1c601978aba17311 to your computer and use it in GitHub Desktop.
Save Morfly/e43ac1c028a0e08d1c601978aba17311 to your computer and use it in GitHub Desktop.
load("@rules_android//android:rules.bzl", "android_binary")
android_binary(
name = "bin",
custom_package = "io.morfly.bfa",
manifest = "AndroidManifest.xml",
manifest_values = {
"minSdkVersion": "21",
"targetSdkVersion": "29",
},
srcs = ["src/io/morfly/bfa/MainActivity.java"],
resource_files = glob(["res/**"]),
deps = [
"//my-feature:my-feature",
"//my-feature:my-feature-with-res",
]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment