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"]]
A library to provide an emoji-keyboard implementation for Android applications
This is forked from edsilfer/emoji-keyboard project. <a name="showcase" />
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" /><a name="license"></a>
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>
<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