I develop a watchface, but when I copy the watchface(.prg) file to my device, It's not display in the watchface set menu, the watchface can simulated correct in eclipse, why?
I develop a watchface, but when I copy the watchface(.prg) file to my device, It's not display in the watchface set menu, the watchface can simulated correct in eclipse, why?
In the manifest, you have the type set for watch-app. It needs to be watch face.
type="watchface"
Also, you may want to check on the permissions as it looks like you may be setting things that aren't needed (like BLE). The Background permission can cause problems unless you have code annotated for (:background)
Yes! I modify the type, It's OK now, Thank you very much!