Change LibartImgDeviceBaseAddress to 0x60000000

Lower it to have more space to allocate the region space after.

Test: make
Bug: 112670831
Change-Id: I336fe25466711d93481f30e69141449d3cfbf7e2
diff --git a/android/config.go b/android/config.go
index 3ef202b..942b826 100644
--- a/android/config.go
+++ b/android/config.go
@@ -660,16 +660,7 @@
 }
 
 func (c *config) LibartImgDeviceBaseAddress() string {
-	archType := Common
-	if len(c.Targets[Device]) > 0 {
-		archType = c.Targets[Device][0].Arch.ArchType
-	}
-	switch archType {
-	default:
-		return "0x70000000"
-	case Mips, Mips64:
-		return "0x5C000000"
-	}
+	return "0x60000000"
 }
 
 func (c *config) ArtUseReadBarrier() bool {