Hi,
In compileapp.py line 317 (compile_views) there is a regex that matches ^[\w/]+\.\w+$, but the mobile views are called view.mobile.html (instead of the normal view.html). Now when you try to compile an app the mobile views are left out. Simple solution would be to allow dots in the filename ^[\w/\.]+\.\w+$

