Skip to content

Commit ca97720

Browse files
Update project
1 parent 7e6b748 commit ca97720

6 files changed

Lines changed: 21 additions & 23 deletions

File tree

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 25
5-
buildToolsVersion "25.0.2"
4+
compileSdkVersion 26
5+
buildToolsVersion "26.0.1"
66
defaultConfig {
77
applicationId "io.fabianterhorst.isometric.sample"
88
minSdkVersion 14
9-
targetSdkVersion 25
9+
targetSdkVersion 26
1010
versionCode 1
1111
versionName "1.0"
1212
}
@@ -19,6 +19,6 @@ android {
1919
}
2020

2121
dependencies {
22-
compile 'com.android.support:appcompat-v7:25.3.1'
22+
compile 'com.android.support:appcompat-v7:26.0.2'
2323
compile project(':lib')
2424
}

build.gradle

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,13 @@
22

33
buildscript {
44
repositories {
5+
google()
56
jcenter()
67
}
78
dependencies {
8-
if (project.hasProperty('buildCMD')) {
9-
classpath 'com.android.tools.build:gradle:2.3.0'
10-
} else {
11-
classpath 'com.android.tools.build:gradle:2.4.0-alpha4'
12-
}
9+
classpath 'com.android.tools.build:gradle:3.0.0-beta4'
1310
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
14-
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
11+
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
1512
classpath 'com.facebook.testing.screenshot:plugin:0.4.2'
1613

1714
// NOTE: Do not place your application dependencies here; they belong
@@ -21,6 +18,7 @@ buildscript {
2118

2219
allprojects {
2320
repositories {
21+
google()
2422
jcenter()
2523
}
2624
}

gradle/wrapper/gradle-wrapper.jar

501 Bytes
Binary file not shown.
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Mon Apr 03 17:50:29 CEST 2017
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
43
zipStoreBase=GRADLE_USER_HOME
54
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.4.1-bin.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.2-rc-1-bin.zip

gradlew

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/build.gradle

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ archivesBaseName = 'Isometric'
88
project.screenshots.customTestRunner = true
99

1010
android {
11-
compileSdkVersion 25
12-
buildToolsVersion "25.0.2"
11+
compileSdkVersion 26
12+
buildToolsVersion "26.0.1"
1313

1414
defaultConfig {
1515
minSdkVersion 14
16-
targetSdkVersion 25
16+
targetSdkVersion 26
1717
versionCode 6
1818
versionName "0.0.6"
1919
testInstrumentationRunner 'io.fabianterhorst.isometric.screenshot.IsometricTestRunner'
@@ -23,7 +23,7 @@ android {
2323
minifyEnabled false
2424
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2525
defaultConfig {
26-
targetSdkVersion 25
26+
targetSdkVersion 26
2727
}
2828
}
2929
debug {
@@ -37,7 +37,7 @@ android {
3737
def siteUrl = 'https://github.com/FabianTerhorst/Isometric'
3838
def gitUrl = 'https://github.com/FabianTerhorst/Isometric.git'
3939

40-
version = "0.0.6"
40+
version = "0.0.6.2"
4141
group = "io.fabianterhorst"
4242

4343
install {
@@ -49,13 +49,14 @@ install {
4949
packaging 'aar'
5050

5151
// Add your description here
52-
name 'Isometric drawing library for Android'
52+
name 'Isometric'
53+
description 'Isometric drawing library for Android'
5354
url siteUrl
5455

5556
// Set your license
5657
licenses {
5758
license {
58-
name 'The Apache Software License, Version 2.0'
59+
name 'The Apache License, Version 2.0'
5960
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
6061
}
6162
}
@@ -111,7 +112,7 @@ artifacts {
111112
}
112113

113114
dependencies {
114-
compile 'com.android.support:support-annotations:25.3.1'
115+
compile 'com.android.support:support-annotations:26.0.2'
115116
testCompile 'junit:junit:4.12'
116117
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
117118
exclude group: 'com.android.support', module: 'support-annotations'

0 commit comments

Comments
 (0)