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 11load ("@build_bazel_rules_android//android:rules.bzl" , "android_binary" )
2+ load ("//build_extensions:axt_versions.bzl" , "ORCHESTRATOR_VERSION" )
23load ("//build_extensions/maven:axt_maven_apk.bzl" , "axt_maven_apk" )
34load ("//build_extensions/maven:maven_artifact.bzl" , "maven_artifact" )
45
@@ -16,6 +17,9 @@ android_binary(
1617 srcs = ["src/androidx/test/orchestrator/Orchestrator.java" ],
1718 custom_package = "androidx.test.orchestrator.stubapp" ,
1819 manifest = "src/AndroidManifest.xml" ,
20+ manifest_values = {
21+ "appVersion" : ORCHESTRATOR_VERSION ,
22+ },
1923 multidex = "native" , # actually fits into one file, so skip main dex list
2024 proguard_specs = [
2125 "//:proguard_binary.cfg" ,
Original file line number Diff line number Diff line change 1616 -->
1717
1818<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}" >
2022
2123 <queries >
2224 <package android : name =" androidx.test.services" />
You can’t perform that action at this time.
0 commit comments