-
Notifications
You must be signed in to change notification settings - Fork 818
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release io.github.rockerhieu:emojicon:1.3.4
- Loading branch information
1 parent
3e8f522
commit e0b82cf
Showing
32 changed files
with
173 additions
and
268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
ext { | ||
bintray = [ | ||
bintrayRepo : "maven", | ||
bintrayName : "emojicon", | ||
|
||
publishedGroupId : GROUP, | ||
libraryName : POM_NAME, | ||
artifact : POM_ARTIFACT_ID, | ||
|
||
libraryDescription: POM_DESCRIPTION, | ||
|
||
siteUrl : POM_SCM_URL, | ||
gitUrl : POM_SCM_CONNECTION, | ||
|
||
libraryVersion : VERSION_NAME, | ||
|
||
developerId : POM_DEVELOPER_ID, | ||
developerName : POM_DEVELOPER_NAME, | ||
developerEmail : POM_DEVELOPER_EMAIL, | ||
|
||
licenseName : POM_LICENCE_NAME, | ||
licenseUrl : POM_LICENCE_URL, | ||
allLicenses : ["Apache-2.0"] | ||
] | ||
} | ||
|
||
version = project.ext.bintray.libraryVersion | ||
|
||
task sourcesJar(type: Jar) { | ||
from android.sourceSets.main.java.srcDirs | ||
classifier = "sources" | ||
} | ||
|
||
task javadoc(type: Javadoc) { | ||
source = android.sourceSets.main.java.srcDirs | ||
classpath += project.files(android.getBootClasspath().join(File.pathSeparator)) | ||
options.addStringOption('Xdoclint:none', '-quiet') | ||
options.addStringOption('encoding', 'UTF-8') | ||
} | ||
|
||
task javadocJar(type: Jar, dependsOn: javadoc) { | ||
classifier = "javadoc" | ||
from javadoc.destinationDir | ||
} | ||
|
||
artifacts { | ||
archives javadocJar | ||
archives sourcesJar | ||
} | ||
|
||
// Bintray | ||
Properties properties = new Properties() | ||
properties.load(project.rootProject.file("local.properties").newDataInputStream()) | ||
|
||
bintray { | ||
user = properties.getProperty("bintray.user") | ||
key = properties.getProperty("bintray.apikey") | ||
|
||
configurations = ["archives"] | ||
pkg { | ||
repo = project.ext.bintray.bintrayRepo | ||
name = project.ext.bintray.bintrayName | ||
desc = project.ext.bintray.libraryDescription | ||
websiteUrl = project.ext.bintray.siteUrl | ||
vcsUrl = project.ext.bintray.gitUrl | ||
licenses = project.ext.bintray.allLicenses | ||
publish = true | ||
publicDownloadNumbers = true | ||
userOrg = properties.getProperty("bintray.userOrg") | ||
version { | ||
desc = project.ext.bintray.libraryDescription | ||
gpg { | ||
sign = true //Determines whether to GPG sign the files. The default is false | ||
passphrase = properties.getProperty("bintray.gpg.password") | ||
//Optional. The passphrase for GPG signing | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,25 @@ | ||
plugins { | ||
id "com.jfrog.bintray" version "1.7.1" | ||
} | ||
apply plugin: 'com.android.library' | ||
apply from: 'gradle-mvn-push.gradle' | ||
|
||
android { | ||
compileSdkVersion 22 | ||
buildToolsVersion "22.0.1" | ||
compileSdkVersion 23 | ||
buildToolsVersion "24.0.1" | ||
|
||
defaultConfig { | ||
minSdkVersion 7 | ||
targetSdkVersion 22 | ||
targetSdkVersion 23 | ||
} | ||
lintOptions { | ||
abortOnError false | ||
} | ||
} | ||
|
||
dependencies { | ||
compile 'com.android.support:support-v4:22.2.1' | ||
compile 'com.android.support:appcompat-v7:22.2.1' | ||
compile 'com.android.support:support-v4:24.1.1' | ||
compile 'com.android.support:appcompat-v7:24.1.1' | ||
} | ||
|
||
apply from: 'gradle-mvn-push.gradle' | ||
apply from: 'bintray.gradle' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,11 +14,11 @@ | |
# limitations under the License. | ||
# | ||
|
||
VERSION_NAME=1.3.4-SNAPSHOT | ||
GROUP=com.rockerhieu.emojicon | ||
VERSION_NAME=1.3.4 | ||
GROUP=io.github.rockerhieu | ||
|
||
POM_DESCRIPTION=A library to show emoji in TextView, EditText (like WhatsApp) for Android | ||
POM_URL=http://rockerhieu.com/emojicon | ||
POM_URL=http://rockerhieu.github.io/emojicon | ||
POM_SCM_URL=https://github.com/rockerhieu/emojicon | ||
POM_SCM_CONNECTION=scm:[email protected]:rockerhieu/emojicon.git | ||
POM_SCM_DEV_CONNECTION=scm:[email protected]:rockerhieu/emojicon.git | ||
|
@@ -27,9 +27,10 @@ POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt | |
POM_LICENCE_DIST=repo | ||
POM_DEVELOPER_ID=rockerhieu | ||
POM_DEVELOPER_NAME=Hieu Rocker | ||
POM_DEVELOPER_EMAIL=[email protected] | ||
|
||
POM_NAME=Emojicon Library for Android | ||
POM_ARTIFACT_ID=library | ||
POM_ARTIFACT_ID=emojicon | ||
POM_PACKAGING=aar | ||
|
||
|
||
|
Oops, something went wrong.