Skip to content

Commit abb8795

Browse files
committed
Update gradle and remove dependency on bintray-release
1 parent 25c84b2 commit abb8795

2 files changed

Lines changed: 6 additions & 19 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:1.3.0'
8+
classpath 'com.android.tools.build:gradle:3.0.1'
99

1010
// NOTE: Do not place your application dependencies here; they belong
1111
// in the individual module build.gradle files

library/build.gradle

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,18 @@
11
apply plugin: 'com.android.library'
2-
apply plugin: 'com.novoda.bintray-release'
32

43
buildscript {
54
repositories {
65
jcenter()
76
}
8-
dependencies {
9-
classpath 'com.novoda:bintray-release:0.3.4'
10-
}
117
}
128

139
android {
14-
compileSdkVersion 23
15-
buildToolsVersion "23.0.1"
10+
compileSdkVersion 25
11+
buildToolsVersion '26.0.2'
1612

1713
defaultConfig {
1814
minSdkVersion 14
19-
targetSdkVersion 23
15+
targetSdkVersion 25
2016
versionCode 1
2117
versionName "1.4.0"
2218
}
@@ -30,15 +26,6 @@ android {
3026

3127
dependencies {
3228
compile fileTree(dir: 'libs', include: ['*.jar'])
33-
compile 'com.android.support:appcompat-v7:23.1.1'
34-
compile 'com.android.support:design:23.1.1'
29+
compile 'com.android.support:appcompat-v7:25.4.0'
30+
compile 'com.android.support:design:25.4.0'
3531
}
36-
37-
publish {
38-
userOrg = 'miguelcatalan'
39-
groupId = 'com.miguelcatalan'
40-
artifactId = 'materialsearchview'
41-
publishVersion = '1.4.0'
42-
desc = 'Cute library to implement SearchView in a Material Design Approach'
43-
website = 'https://github.com/MiguelCatalan/MaterialSearchView'
44-
}

0 commit comments

Comments
 (0)