File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
runner/android_test_orchestrator/stubapp Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1
1
load ("@build_bazel_rules_android//android:rules.bzl" , "android_binary" )
2
+ load ("//build_extensions:axt_versions.bzl" , "ORCHESTRATOR_VERSION" )
2
3
load ("//build_extensions/maven:axt_maven_apk.bzl" , "axt_maven_apk" )
3
4
load ("//build_extensions/maven:maven_artifact.bzl" , "maven_artifact" )
4
5
@@ -16,6 +17,9 @@ android_binary(
16
17
srcs = ["src/androidx/test/orchestrator/Orchestrator.java" ],
17
18
custom_package = "androidx.test.orchestrator.stubapp" ,
18
19
manifest = "src/AndroidManifest.xml" ,
20
+ manifest_values = {
21
+ "appVersion" : ORCHESTRATOR_VERSION ,
22
+ },
19
23
multidex = "native" , # actually fits into one file, so skip main dex list
20
24
proguard_specs = [
21
25
"//:proguard_binary.cfg" ,
Original file line number Diff line number Diff line change 16
16
-->
17
17
18
18
<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
19
- package =" androidx.test.orchestrator" >
19
+ package =" androidx.test.orchestrator"
20
+ android : versionCode =" 1"
21
+ android : versionName =" ${appVersion}" >
20
22
21
23
<queries >
22
24
<package android : name =" androidx.test.services" />
You can’t perform that action at this time.
0 commit comments