Skip to content

Commit

Permalink
General libs update
Browse files Browse the repository at this point in the history
  • Loading branch information
crdornelles committed Aug 13, 2018
1 parent 30908f1 commit ec6ac15
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 17 deletions.
13 changes: 11 additions & 2 deletions build.gradle
Expand Up @@ -3,10 +3,15 @@
buildscript {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
classpath 'com.novoda:bintray-release:0.3.4'
classpath 'com.android.tools.build:gradle:3.1.4'
classpath 'com.novoda:bintray-release:0.8.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand All @@ -16,6 +21,10 @@ allprojects {
repositories {
jcenter()

maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}

Expand Down
13 changes: 7 additions & 6 deletions fab-loading/build.gradle
Expand Up @@ -2,12 +2,12 @@ apply plugin: 'com.android.library'
apply plugin: 'com.novoda.bintray-release'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileSdkVersion 28
buildToolsVersion "28.0.2"

defaultConfig {
minSdkVersion 9
targetSdkVersion 23
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "0.6.0"
}
Expand All @@ -20,11 +20,12 @@ android {
}

dependencies {
compile 'com.melnykov:floatingactionbutton:1.3.0'
compile 'io.saeid:support-animator:0.2.1'
implementation 'com.melnykov:floatingactionbutton:1.3.0'
implementation 'io.saeid:support-animator:0.2.1'
}

publish {
userOrg = 'saeid'
groupId = 'io.saeid'
artifactId = 'fab-loading'
publishVersion = '1.0.0'
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
#Sun Aug 30 12:06:16 IRDT 2015
#Mon Aug 13 09:50:16 BRT 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
14 changes: 7 additions & 7 deletions sample/build.gradle
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileSdkVersion 28
buildToolsVersion "28.0.2"

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

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'io.saeid:fab-loading:1.0.0'
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0-rc01'
implementation 'io.saeid:fab-loading:1.0.0'
}

0 comments on commit ec6ac15

Please sign in to comment.