Merge "android profile: Create a new v8 which installs the android platform tools and make it default."
diff --git a/data/config.v1.xml b/data/config.v1.xml
index 1340725..df7939d 100644
--- a/data/config.v1.xml
+++ b/data/config.v1.xml
@@ -239,7 +239,6 @@
       -->
     </group>
     <group name="projects">
-      <test>vanadium-browser-test</test>
       <test>vanadium-playground-test</test>
     </group>
     <group name="third_party-go">
diff --git a/jiri-test/internal/test/projects.go b/jiri-test/internal/test/projects.go
index cd0afaf..fd05bc1 100644
--- a/jiri-test/internal/test/projects.go
+++ b/jiri-test/internal/test/projects.go
@@ -86,8 +86,7 @@
 
 // vanadiumReaderTest runs the tests for the reader example application.
 func vanadiumReaderTest(jirix *jiri.X, testName string, _ ...Opt) (*test.Result, error) {
-	testDir := filepath.Join(jirix.Root, "release", "projects", "reader")
-	return runMakefileTest(jirix, testName, testDir, "test", nil, []string{"v23:nodejs"}, defaultProjectTestTimeout)
+	return runJavaTest(jirix, testName, []string{"release", "projects", "reader", "android"}, []string{"clean", "test"})
 }
 
 // vanadiumTravelTest runs the tests for the travel example application.
diff --git a/jiri-test/internal/test/release.go b/jiri-test/internal/test/release.go
index c1b4291..95288bf 100644
--- a/jiri-test/internal/test/release.go
+++ b/jiri-test/internal/test/release.go
@@ -359,7 +359,7 @@
 
 // vanadiumReleaseCandidate updates binaries of staging cloud services and run tests for them.
 func vanadiumReleaseCandidate(jirix *jiri.X, testName string, opts ...Opt) (_ *test.Result, e error) {
-	cleanup, err := initTest(jirix, testName, []string{"base"})
+	cleanup, err := initTest(jirix, testName, []string{"v23:base"})
 	if err != nil {
 		return nil, newInternalError(err, "Init")
 	}