Skip to content

Commit b8444e1

Browse files
committed
Updated gradle to 3.0.1 and sdk version to 27
1 parent ed5f658 commit b8444e1

File tree

4 files changed

+17
-11
lines changed

4 files changed

+17
-11
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
# generated files
1212
bin/
1313
gen/
14+
release/
1415

1516
# Local configuration file (sdk path, etc)
1617
local.properties

app/build.gradle

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 25
5-
buildToolsVersion '25.0.2'
4+
compileSdkVersion 27
5+
buildToolsVersion '27.0.3'
66

77
defaultConfig {
88
applicationId "fr.inria.tyrex.senslogs"
9-
minSdkVersion 11
10-
targetSdkVersion 25
9+
minSdkVersion 14
10+
targetSdkVersion 27
1111
versionCode 2
1212
versionName "2.0"
1313
}
@@ -25,10 +25,10 @@ repositories {
2525

2626
dependencies {
2727
compile fileTree(dir: 'libs', include: ['*.jar'])
28-
compile 'com.android.support:design:25.2.0'
29-
compile 'com.android.support:appcompat-v7:25.2.0'
30-
compile 'com.android.support:recyclerview-v7:25.2.0'
28+
compile 'com.android.support:design:27.0.2'
29+
compile 'com.android.support:appcompat-v7:27.0.2'
30+
compile 'com.android.support:recyclerview-v7:27.0.2'
3131
compile 'com.bignerdranch.android:recyclerview-multiselect:0.2'
32-
compile 'com.google.code.gson:gson:2.7'
32+
compile 'com.google.code.gson:gson:2.8.0'
3333
compile 'org.ini4j:ini4j:0.5.1'
3434
}

build.gradle

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@
33
buildscript {
44
repositories {
55
jcenter()
6+
maven {
7+
url 'https://maven.google.com/'
8+
name 'Google'
9+
}
610
}
711
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.3.1'
12+
classpath 'com.android.tools.build:gradle:3.0.1'
913

1014
// NOTE: Do not place your application dependencies here; they belong
1115
// in the individual module build.gradle files
@@ -15,5 +19,6 @@ buildscript {
1519
allprojects {
1620
repositories {
1721
jcenter()
22+
google()
1823
}
1924
}
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Tue Apr 11 10:43:32 CEST 2017
1+
#Tue Jan 16 08:16:30 CET 2018
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

0 commit comments

Comments
 (0)