在跑Vuforia 的sample android app 的时候报了下面这个错,找了半天才找到解决方法:
"Vuforia App key is missing. Please get a valid key, by logging into your account at developer.vuforia.com and creating a new project"
Vuforia 4.0 以上要求一个License key. 在官网上注册一个账号,在develop->License Manager 下按步骤填写就能得到一个license key.
复制粘贴到SampleApplicationSession.java 中的 InitVuforiaTask类中的Vuforia.setInitParameter(mActivity,mVuforiaFlags,"把license key 放这里") 中的第三个参数中。 重新运行就可以了。