Skip to content

Commit

Permalink
Releases version 1.1.0 (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aritra Roy committed Apr 16, 2018
1 parent 0b24f7d commit 211a542
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ android {
}

dependencies {
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:appcompat-v7:27.1.0'
implementation project(':kerningview')
}
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.1'

classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
}
}

Expand All @@ -15,6 +18,11 @@ allprojects {
google()
jcenter()
}

tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('encoding', 'UTF-8')
}
}

task clean(type: Delete) {
Expand Down
33 changes: 30 additions & 3 deletions kerningview/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,37 @@
apply plugin: 'com.android.library'

ext {
bintrayRepo = 'maven'
bintrayName = 'kerning-views'

publishedGroupId = 'com.andrognito.kerningview'
libraryName = 'kerningview'
artifact = 'kerningview'

libraryDescription = 'Provides a set of views which allows to adjust the spacing between the characters in the text of that view, also known as Kerning effect.'

siteUrl = 'https://github.com/aritraroy/KerningViews'
gitUrl = 'https://github.com/aritraroy/KerningViews.git'

libraryVersion = '1.1.0'

developerId = 'aritraroy'
developerName = 'Aritra Roy'
developerEmail = 'aritra.roy.in@gmail.com'

licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}

android {
compileSdkVersion 27

defaultConfig {
minSdkVersion 14
targetSdkVersion 27
versionCode 1
versionName "1.0"
versionCode 2
versionName "1.1.0"
}
buildTypes {
release {
Expand All @@ -18,5 +42,8 @@ android {
}

dependencies {
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:appcompat-v7:27.1.0'
}

apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'

0 comments on commit 211a542

Please sign in to comment.