Skip to content

Commit

Permalink
update libraries and increase version code
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomer committed Apr 4, 2018
1 parent 6f0a4c6 commit 0e6dcb1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Simple to use library for android, Enabling to add a tooltip near any view with
Add a dependency to your app build.gradle
```groovy
dependencies {
compile 'com.tomergoldst.android:tooltips:1.0.9'
compile 'com.tomergoldst.android:tooltips:1.0.10'
}
```

Expand Down
9 changes: 4 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion '25.0.3'
compileSdkVersion 27

defaultConfig {
applicationId "com.tomergoldst.tooltipsdemo"
minSdkVersion 14
targetSdkVersion 25
targetSdkVersion 27
versionCode 1
versionName "1.0"
}
Expand All @@ -22,7 +21,7 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support:appcompat-v7:27.1.0'
compile 'com.android.support:design:27.1.0'
compile project(path: ':tooltips')
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
13 changes: 6 additions & 7 deletions tooltips/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ext {
siteUrl = 'https://github.com/tomergoldst/tooltips'
gitUrl = 'https://github.com/tomergoldst/tooltips.git'

libraryVersion = '1.0.9'
libraryVersion = '1.0.10'

developerId = 'tomergoldst'
developerName = 'Tomer Goldstein'
Expand All @@ -25,14 +25,13 @@ ext {
}

android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
compileSdkVersion 27

defaultConfig {
minSdkVersion 14
targetSdkVersion 25
versionCode 10
versionName "1.0.9"
targetSdkVersion 27
versionCode 11
versionName "1.0.10"
}
buildTypes {
release {
Expand All @@ -45,7 +44,7 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:appcompat-v7:27.1.0'
}

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

0 comments on commit 0e6dcb1

Please sign in to comment.