Last active
February 21, 2022 04:29
-
-
Save Morfly/e43ac1c028a0e08d1c601978aba17311 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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