Monday, November 26, 2012

Blue Skies Live Wallpaper v2.1

  - New Feature: Daydream support on 4.2+ devices
  - New Feature: Simulated scrolling on some devices
  - Update: "None" wind speed

Again, this is primarily a maintenance release with the associated improvements.  However, you can now select 'none' as your wind speed, as some folks don't like the lateral motion of the clouds.  Enjoy!

3 comments:

  1. Very beautiful Live Wallpapers is a bit of a problem in my phone.

    In my android phone, Soft navigation bar disappeared in keyguardscreen, so onSurfaceChanged callback function

    is called again, slightly different height value returned, upper region slightly cracked.

    When come back to homescreen, problerm is cleared.

    In case Google default Live wallpaper, Water, work well even in keyquardscreen,

    cause of that new values were adapted to render engine when onSurfaceChanged function is called.

    @Override

    public void onSurfaceChanged(SurfaceHolder sh, int format,

    int width, int height)

    {

    // every time apply new value to render engine

    renderer.onSurfaceChanged(sh, format, width, height);

    renderer.onDraw();

    }

    There's nothing wrong with your application.

    But I want to use your Live Wallpapers in my phone perfectly.

    Plz try to modify your application like as Google default Live wallpaper

    It will not have a negative effect on other phones that modifications.

    ReplyDelete