Skip to content

Commit a957735

Browse files
committed
Add support Android Studio 3.0
Bump to 2.3.1
1 parent 29cf1cb commit a957735

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The default display state is `DisplayState.NONE'.
3939
<dependency>
4040
<groupId>it.sephiroth.android.library.imagezoom</groupId>
4141
<artifactId>imagezoom</artifactId>
42-
<version>2.3.0</version>
42+
<version>2.3.1</version>
4343
</dependency>
4444

4545
##Usage (Gradle)

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ buildscript {
22
repositories {
33
jcenter()
44
mavenLocal()
5+
google()
56
}
67

78
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.3.3'
9+
classpath 'com.android.tools.build:gradle:3.0.0-rc1'
910
}
1011
}
1112

@@ -16,5 +17,6 @@ allprojects {
1617
repositories {
1718
jcenter()
1819
mavenCentral()
20+
google()
1921
}
20-
}
22+
}

gradle.properties

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
VERSION_NAME=2.3.0
2+
VERSION_NAME=2.3.1
33
GROUP=it.sephiroth.android.library.imagezoom
44

55
POM_DESCRIPTION=Android ImageView widget with zoom and pan capabilities
@@ -16,8 +16,9 @@ POM_SCM_URL=https://github.com/sephiroth74/ImageViewZoom
1616
POM_SCM_CONNECTION=scm:[email protected]:sephiroth74/ImageViewZoom
1717
POM_SCM_DEV_CONNECTION=scm:[email protected]:sephiroth74/ImageViewZoom.git
1818

19-
ANDROID_BUILD_TARGET_SDK_VERSION=25
20-
ANDROID_BUILD_TOOLS_VERSION=25.0.3
21-
ANDROID_BUILD_SDK_VERSION=25
19+
ANDROID_BUILD_TARGET_SDK_VERSION=26
20+
ANDROID_BUILD_TOOLS_VERSION=26.0.2
21+
ANDROID_BUILD_SDK_VERSION=26
22+
ANDROID_SUPPORT_LIB_VERSION=26.1.0
2223

2324
org.gradle.daemon=true
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Tue Jun 27 18:55:51 EEST 2017
1+
#Sat Oct 21 23:42:36 GMT+06:00 2017
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip

library/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ android {
3333
}
3434

3535
dependencies {
36-
implementation "com.android.support:support-compat:26.1.0"
36+
implementation "com.android.support:support-compat:$ANDROID_SUPPORT_LIB_VERSION"
3737
}
3838

3939
apply from: rootProject.file('checkstyle.gradle')

0 commit comments

Comments
 (0)