muzei/muzei


Muzei Live Wallpaper for Android http://muzei.co

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.romannurik:muzei:3.4.3-rc01'
	}
	dependencies {
		implementation("com.github.romannurik:muzei:3.4.3-rc01")
	}
	<dependency>
	    <groupId>com.github.romannurik</groupId>
	    <artifactId>muzei</artifactId>
	    <version>3.4.3-rc01</version>
	</dependency>

                            
    libraryDependencies += "com.github.romannurik" % "muzei" % "3.4.3-rc01"
        
        

                            
    :dependencies [[com.github.romannurik/muzei "3.4.3-rc01"]]
        
        

Readme


Muzei Live Wallpaper

<img src="http://api.muzei.co/static/hero.jpg" width="400" align="right" hspace="20">

A living museum for your Android home screen.

Muzei is a live wallpaper that gently refreshes your home screen each day with famous works of art. It also recedes into the background, blurring and dimming artwork to keep your icons and widgets in the spotlight. Simply double touch the wallpaper or open the Muzei app to enjoy and explore the artwork in its full glory.

Alternatively, you can choose your favorite photos from your own gallery or other apps to use on your home screen. To keep your wallpaper fresh, Muzei will rotate through your favorite photos every few hours.

<a href="https://play.google.com/store/apps/details?id=net.nurik.roman.muzei" target="_blank"> <img src="https://play.google.com/intl/en_us/badges/images/generic/en-play-badge.png" alt="Get it on Google Play" height="90"/></a>

Muzei API

Muzei offers a simple API that allows you to build your own wallpaper source.

Read the API docs  •  Check out the Unsplash example source