Skip to content
This repository was archived by the owner on Aug 16, 2023. It is now read-only.

Commit 5834c5b

Browse files
author
Manuel Vivo
committed
Updates libraries
1 parent 5186b29 commit 5834c5b

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed
Lines changed: 7 additions & 6 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 29
5+
buildToolsVersion "29.0.2"
66
defaultConfig {
77
applicationId "com.google.googleio"
88
minSdkVersion 22
9-
targetSdkVersion 25
9+
targetSdkVersion 29
1010
versionCode 1
1111
versionName "1.0"
1212
}
@@ -19,7 +19,8 @@ android {
1919
}
2020

2121
dependencies {
22-
compile fileTree(dir: 'libs', include: ['*.jar'])
23-
testCompile 'junit:junit:4.12'
24-
compile 'com.android.support.constraint:constraint-layout:1.1.0-beta1'
22+
implementation fileTree(dir: 'libs', include: ['*.jar'])
23+
testImplementation 'junit:junit:4.12'
24+
25+
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
2526
}

constraint-layout-start/build.gradle

Lines changed: 7 additions & 2 deletions
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.0'
12+
classpath 'com.android.tools.build:gradle:3.5.2'
913

1014
// NOTE: Do not place your application dependencies here; they belong
1115
// in the individual module build.gradle files
@@ -16,7 +20,8 @@ allprojects {
1620
repositories {
1721
jcenter()
1822
maven {
19-
url 'https://maven.google.com'
23+
url 'https://maven.google.com/'
24+
name 'Google'
2025
}
2126
}
2227
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Thu Aug 03 10:22:23 PDT 2017
1+
#Thu Nov 07 12:41:13 CET 2019
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.5-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip

0 commit comments

Comments
 (0)