GitXplorerGitXplorer
n

null-launcher

public
43 stars
14 forks
2 issues

Commits

List of commits on branch master.
Verified
aee0d4efd1d41dfec8baacdd65ac98c7c93a93c1

Merge pull request #4 from TPS/master

nnotriddle committed 4 years ago
Verified
86d863d0e91060a680ac5f214fb10e25caac4be5

[ImgBot] Optimize images (#1)

iimgbot[bot] committed 4 years ago
Unverified
afaa2eaeb34db16ba69f12a9aefe55b1b83c7a45

Increment version number.

nnotriddle committed 11 years ago
Unverified
88d8a58cf739e9e4cf61be61abbd02886a0ef8e7

Fix a crashing bug on Android 4.1.

nnotriddle committed 11 years ago
Unverified
8106a8e79c999ef1b3a732daf3635ef5ca481389

Increment version number.

nnotriddle committed 11 years ago
Unverified
ed200864ce97cad48c17b5fe2de1be18b509ea75

Add support for transparent window decorations.

nnotriddle committed 11 years ago

README

The README file for this repository.

Null launcher

Null launcher is a launcher that does nothing. Yes, really. It's useful when combined with Wave Launcher, Swapps, and similar.

After installing, press your home button. Then, depending on your Android version, either check the "Use by default" box and tap Null launcher, or tap Null launcher then tap "Always."

If you've accidentally switched to Null Launcher with no way to get out, pinch-zoom on the wallpaper and you can change back to your old launcher.

Compiling

TL;DR : Just like every other Android project.

Debug

To compile in debug mode, run this the first time:

android update project -p .

And run this every time.

ant clean
ant debug

Release

Making a release build is a bit harder, because you need a release key. A howto is available at https://developer.android.com/tools/publishing/app-signing.html. Here's an example for generating the key (only do this once):

android update project -p . # Unless you've already done it, of course.
keytool -genkey -keystore null_launcher.keystore -alias null_launcher -keyalg RSA -keysize 2048 -validity 10000
echo "key.store=null_launcher.keystore" > ant.properties
echo "key.alias=null_launcher" >> ant.properties

And to actually build the program:

ant clean
ant release