Skip to content

Commit

Permalink
Bump to version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Saeed committed Aug 30, 2015
1 parent df94d39 commit 0ac5ecc
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 6 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ buildscript {
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:1.3.0' classpath 'com.android.tools.build:gradle:1.3.0'

classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0'
classpath 'com.github.dcendents:android-maven-plugin:1.2'
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files // in the individual module build.gradle files
} }
Expand Down
21 changes: 20 additions & 1 deletion fab-loading/build.gradle
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
minSdkVersion 9 minSdkVersion 9
targetSdkVersion 23 targetSdkVersion 23
versionCode 1 versionCode 1
versionName "1.0" versionName "0.5.0"
} }
buildTypes { buildTypes {
release { release {
Expand All @@ -22,3 +22,22 @@ dependencies {
compile 'com.melnykov:floatingactionbutton:1.3.0' compile 'com.melnykov:floatingactionbutton:1.3.0'
compile 'io.saeid:support-animator:0.2.1' compile 'io.saeid:support-animator:0.2.1'
} }

ext {
bintrayRepo = 'maven'
bintrayName = 'fab-loading'

publishedGroupId = 'io.saeid'
libraryName = 'fab-loading'

artifact = 'fab-loading'

libraryDescription = 'A loading animation based on Floating Action Button'
libraryVersion = '0.5.0'

developerId = 'smasoumi'
developerName = 'Saeed Masoumi'
developerEmail = 's-masoumi@live.com'

}
apply from: 'https://raw.githubusercontent.com/smasoumi/Bintray/master/bintray_no_javadoc.gradle'
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat Aug 29 20:46:24 IRDT 2015 #Sun Aug 30 12:06:16 IRDT 2015
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip
3 changes: 2 additions & 1 deletion sample/build.gradle
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ android {
buildToolsVersion "23.0.0" buildToolsVersion "23.0.0"


defaultConfig { defaultConfig {
applicationId "io.saeid.materialfabloading" applicationId "io.saeid.fabloadingtest"
minSdkVersion 9 minSdkVersion 9
targetSdkVersion 23 targetSdkVersion 23
versionCode 1 versionCode 1
Expand All @@ -20,6 +20,7 @@ android {
} }


dependencies { dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.0.0' compile 'com.android.support:appcompat-v7:23.0.0'
compile project(':fab-loading') compile project(':fab-loading')
} }
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Original file line Diff line number Diff line change
@@ -1 +1 @@
include ':app', ':fab-loading' include ':fab-loading', ':sample'

0 comments on commit 0ac5ecc

Please sign in to comment.