Home

Awesome

AcDisplay

Build Status Crowdin Bountysource

<img alt="Main screen: handling notification" align="right" height="300" src="https://github.com/AChep/AcDisplay/raw/master/screenshots/screenshot2.png" /> <img alt="Main screen" align="right" height="300" src="https://github.com/AChep/AcDisplay/raw/master/screenshots/screenshot1.png" />

AcDisplay is a new way of handling notifications in Android.

It will inform you about new notifications by showing a minimal, beautiful screen, allowing you to open them directly from the lock screen. And if you want to see what's going on, you can simply take your phone out of your pocket to view all the latest notifications, in a similarly pleasing and minimalistic manner.

<a href="http://get.acdisplay.org"> <img alt="Get AcDisplay on Google Play" vspace="20" src="https://play.google.com/intl/en_us/badges/images/generic/en-play-badge.png" height="60" /> </a> <a href="bitcoin:1GYj49ZnMByKj2f6p7r4f92GQi5pR6BSMz?amount=0.005"> <img alt="Bitcoin wallet: 1GYj49ZnMByKj2f6p7r4f92GQi5pR6BSMz" vspace="28" hspace="20" src="https://github.com/AChep/AcDisplay/raw/master/art/btn_bitcoin.png" /> </a> <a href="http://goo.gl/UrecGo"> <img alt="PayPal" vspace="28" src="https://github.com/AChep/AcDisplay/raw/master/art/btn_paypal.png" /> </a>

Report a bug or request a feature

Before creating a new issue please make sure that same or similar issue is not already created by checking open issues and closed issues (please note that there might be multiple pages). If your issue is already there, don't create a new one, but leave a comment under already existing one.

Checklist for creating issues:

Create new issue

Creating your AcDisplay

We welcome all developers to use our source code to create applications on our platform. There are several things we require from all developers for the moment:

  1. Please do not use the name AcDisplay for your app — or make sure your users understand that it is unofficial.
  2. Kindly do not use our standard logo as your app's logo.
  3. Please remember to read and follow the license.

Versioning

For transparency in a release cycle and in striving to maintain backward compatibility, a project should be maintained under the Semantic Versioning guidelines. Sometimes we screw up, but we should adhere to these rules whenever possible.

Releases will be numbered with the following format: <major>.<minor>.<patch> and constructed with the following guidelines:

For more information on SemVer, please visit http://semver.org/.

Download & Build

Clone the project and come in:

$ git clone git://github.com/AChep/AcDisplay.git
$ cd AcDisplay/project/

To build debug version: (only English and Russian locales included)

$ ./gradlew assembleDebug
# Builds all the things. Grab compiled application from ./app/build/outputs/apk/

To build release version: (public test key)

$ ./gradlew assembleRelease
# You will need to answer 'yes' later.
# Grab compiled application from ./app/build/outputs/apk/

To build release version:

# First you need to set the path to your keystore and the alias.
# You may want to put those to your ~/.bashrc file to save them
# for future bash sessions.
$ export ACDISPLAY_SIGN_STORE_FILE=path_to_your_keystore
$ export ACDISPLAY_SIGN_KEY_ALIAS=key_alias

$ ./gradlew assembleRelease
# You will be asked for passwords in proccess.
# Grab compiled application from ./app/build/outputs/apk/

You may also use the Android Studio graphic interface to build.

Import to Android Studio