Google's philosophy with their newest VR platform is simple. In order to offer the best possible experience in Daydream, there needs to be a minimum list of requirements met. The phone must be capable of delivering two video streams at 60fps with no stutter, and when you turn your head inside a Daydream headset there should be as little motion blur as possible. Unfortunately that means no matter how capable your phone is, if it's got an LCD display Google won't be enabling Daydream by default. The "motion to photon latency" in LCD panels being used in phones right now is just too high, and the end result is a VR experience that doesn't meet Google's quality threshold.

That having been said, if you're willing to mess around with your phone a little there may be a way to enable Daydream on your phone without Google's blessing.

Editor's Note: VR Heads does not recommend you attempt to force Daydream onto your phone for daily use. The latency caused by LCD panels dramatically increases the potential for nausea in VR.

Before you get started

  • Your phone must be running Android 7.0 or higher for this to work. DO NOT attempt if your phone is not running this version.
  • You must have root access enabled on your phone for this to work. If you do not know how to root your phone, do not continue.
  • Locate and install the latest version of Google's Daydream app and Google VR Services to install on your phone. If you are not sure you have the latest version from the source you downloaded from, do not continue.
  • Install a Root Explorer app from the Play Store.

This process essentially forces Daydream apps to run on your phone be enabling the code those apps check for in order to determine if your phone is approved by Google. You are installing all of the parts Google enables on a Daydream Ready phone, which includes editing software in your phone that controls permissions. Here's how it works.

Step by step instructions

  1. Locate /system/etc/permissions/handheld_core_hardware.xml in your system, and select Edit.
  2. Locate Root Permissions and add <feature name="android.software.vr.mode" /> <feature name="android.hardware.vr.high_performance" /> to the tag.
  3. Reboot your phone.
  4. Launch Daydream and place your phone inside the headset.

If you can, immediately after you've confirmed Daydream is functional on your phone you should remove root access to keep any other apps from editing files without your knowing. This process bypasses a lot of the security features in Android that keep you safe, and keeping that bypass active on your phone is a bad plan.

That having been said, if you're curious to see what all the Daydream excitement is about and aren't buying a new phone anytime soon this will get you there.

How do I install Daydream on my phone?的更多相关文章

  1. OEL上使用yum install oracle-validated 简化主机配置工作

    环境:OEL 5.7 + Oracle 10.2.0.5 RAC 如果你正在用OEL(Oracle Enterprise Linux)系统部署Oracle,那么可以使用yum安装oracle-vali ...

  2. org.jboss.deployment.DeploymentException: Trying to install an already registered mbean: jboss.jca:service=LocalTxCM,name=egmasDS

    17:34:37,235 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on http-0.0.0.0-8080 17:34:37,281 INFO [ ...

  3. 如何使用yum 下载 一个 package ?如何使用 yum install package 但是保留 rpm 格式的 package ? 或者又 如何通过yum 中已经安装的package 导出它,即yum导出rpm?

    注意 RHEL5 和 RHEL6 的不同 How to use yum to download a package without installing it Solution Verified - ...

  4. Install and Configure SharePoint 2013 Workflow

    这篇文章主要briefly introduce the Install and configure SharePoint 2013 Workflow. Microsoft 推出了新的Workflow ...

  5. Basic Tutorials of Redis(1) - Install And Configure Redis

    Nowaday, Redis became more and more popular , many projects use it in the cache module and the store ...

  6. Hadoop学习日志- install hadoop

    资料来源 : http://www.tutorialspoint.com/hadoop/hadoop_enviornment_setup.htm Hadoop 安装 创建新用户 $ su passwo ...

  7. 关于bundle install 的一点补充

    在第一次运行bundle install之后,生成了Gemfile.lock文件,里面记录gem的具体版本号,按照官方文档说明,以后运行bundle install就不会再依据Gemfile,而是根据 ...

  8. Centos 7 minimal install 无网络无ifconfig的解决

    Centos7这个比较不厚道, minimal install下居然不带net-tools 先要连上网络 修改/etc/sysconfig/network-scripts/ifcfg-ens12312 ...

  9. jBPM4.4 no jBPM DB schema: no JBPM4_EXECUTION table. Run the create.jbpm.schema target first in the install tool.

    jBPM4.4 no jBPM DB schema: no JBPM4_EXECUTION table. Run the create.jbpm.schema target first in the ...

随机推荐

  1. python基础-分支判断语句(4)

    1.分支判断语句 1.单一if结构 2.if-else结构 3.if-elif-else结构 4.if嵌套结构 2.单一if结构 只有一种情况的时候 if 条件: 执行语句 说明: if后面的条件成立 ...

  2. session的一些笔记

    HttpSession hs = request.getSession();//以键值对方式存储数据在session中hs.setAttribute("code", code);/ ...

  3. alert换行

    alert( "视频会议系统开启流程 " + String.fromCharCode(13) + "1.  软件下载之后双击安装即可." + String.fr ...

  4. android WebView详解,常见漏洞详解和安全源码

    这篇博客主要来介绍 WebView 的相关使用方法,常见的几个漏洞,开发中可能遇到的坑和最后解决相应漏洞的源码,以及针对该源码的解析.  转载请注明出处:http://blog.csdn.net/se ...

  5. 运维笔记--ubuntu rm删除文件后 恢复

    待补充 特别注意:umount分区,尝试恢复文件,文件夹(目录),全部文件 https://www.cnblogs.com/wangxiaoqiangs/p/5630288.html https:// ...

  6. extjs 解决使用store.sync()方法更新item有时不触发后台action的问题

    问题描述: extjs 解决使用store.sync()方法更新item有时不触发后台action,不出发后台action的原因是item的字段值没有变化 解决方法: item.setDirty(tr ...

  7. [转]java中作用域public private protected 以及不写的区别

    在说明这四个关键字之前,我想就class之间的关系做一个简单的定义,对于继承自己的class,base class可以认为他们都是自己的子女,而对于和自己一个目录下的classes,认为都是自己的朋友 ...

  8. Java线程池ThreadPoolExecutor使用和分析(一)

    相关文章目录: Java线程池ThreadPoolExecutor使用和分析(一) Java线程池ThreadPoolExecutor使用和分析(二) - execute()原理 Java线程池Thr ...

  9. WebSocket 协议

    1.1 背景知识 由于历史原因,在创建一个具有双向通信机制的 web 应用程序时,需要利用到 HTTP 轮询的方式.围绕轮询产生了 “短轮询” 和 “长轮询”. 短轮询 浏览器赋予了脚本网络通信的编程 ...

  10. thinkphp自动创建数据对象分析

    thinkphp有一个自动创建数据对象的create方法,核心代码如下 public function create($data='',$type='') { // 如果没有传值默认取POST数据 i ...