Skip to content

Commit

Permalink
Released Flashbar v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Aritra Roy committed Apr 24, 2018
1 parent 16cc578 commit 37bc198
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 4 deletions.
9 changes: 7 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
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 +17,10 @@ allprojects {
google()
jcenter()
}

tasks.withType(Javadoc).all {
enabled = false
}
}

task clean(type: Delete) {
Expand All @@ -24,6 +30,5 @@ task clean(type: Delete) {
ext {
sdk = 27
minSdk = 14
libraryVersion = "1.0.7"
supportVersion = "27.1.0"
supportVersion = "27.1.1"
}
31 changes: 29 additions & 2 deletions flashbar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,38 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

ext {
bintrayRepo = 'maven'
bintrayName = 'flashbar'

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

libraryDescription = 'A highly customizable, powerful and easy-to-use alerting library for Android.'

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

libraryVersion = '1.0.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 project.sdk

defaultConfig {
minSdkVersion project.minSdk
targetSdkVersion project.sdk
versionCode 1
versionName "1.0"
versionName "1.0.0"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
Expand All @@ -26,4 +50,7 @@ dependencies {
implementation "com.android.support:appcompat-v7:$project.supportVersion"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'me.zhanghai.android.materialprogressbar:library:1.4.2'
}
}

apply from: 'https://raw.githubusercontent.com/aritraroy/LibUtils/master/install.gradle'
apply from: 'https://raw.githubusercontent.com/aritraroy/LibUtils/master/upload.gradle'

0 comments on commit 37bc198

Please # to comment.