ander7agar/emoji-keyboard


A library to provide an emoji-keyboard implementation for Android applications

Download


Step 1. Add the JitPack repository to your build file

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

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}
	<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.ander7agar:emoji-keyboard:1.0.7'
	}
	<dependency>
	    <groupId>com.github.ander7agar</groupId>
	    <artifactId>emoji-keyboard</artifactId>
	    <version>1.0.7</version>
	</dependency>

                            
    libraryDependencies += "com.github.ander7agar" % "emoji-keyboard" % "1.0.7"
        
        

                            
    :dependencies [[com.github.ander7agar/emoji-keyboard "1.0.7"]]
        
        

Readme


Android Emoji Keyboard

A library to provide an emoji-keyboard implementation for Android applications

This is forked from edsilfer/emoji-keyboard project. <a name="showcase" />

Showcase

<p align="center"> <img src="showcase/telegram.gif" align="center" hspace="20"> <img src="showcase/emojilayout.gif" align="center"> <img src="showcase/whatsapp.gif" align="center" hspace="20"> </p>

Quicky Setup

repositories {
	...
	maven { url 'https://jitpack.io' }
}

dependencies {
    compile 'com.github.ander7agar:emoji-keyboard:1.0.5'
}

Refer to the wiki section.

<a name="third-part-libraries" />

Third Part Libraries & Special Thanks

  • Rockerhieu / emojicon: Do you like emojis in Whatsapp, iMessage? Emojicon is a library to implement such a thing for Android;
  • DrKLO / Telegram: Telegram is a messaging app with a focus on speed and security. It’s superfast, simple and free. This repo contains the official source code for Telegram App for Android;
  • ogaclejapan/ SmartTabLayout: A custom ViewPager title strip which gives continuous feedback to the user when scrolling;
  • lopspower / CircularImageView: This is an Android project allowing to realize a circular ImageView in the simplest way possible;
  • square / picasso: A powerful image downloading and caching library for Android;

<a name="license"></a>

License

Copyright 2017 Andersson G. Acosta de la Rosa

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

<a name="references"></a>

References

<a name="REF1"></a>

  • [REF1] - https://github.com/rockerhieu/emojicon <a name="REF2"></a>

  • [REF2] - https://github.com/DrKLO/Telegram <a name="REF3"></a>

  • [REF3] - https://github.com/ogaclejapan/SmartTabLayout <a name="REF4"></a>

  • [REF4] - https://github.com/lopspower/CircularImageView <a name="REF5"></a>

  • [REF5] - https://github.com/square/picasso