Skip to content

Commit e72bf49

Browse files
committed
repo update
1 parent 3d25ba9 commit e72bf49

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
}
1010
}
1111
dependencies {
12-
classpath 'com.android.tools.build:gradle:3.0.1'
12+
classpath 'com.android.tools.build:gradle:3.2.0-alpha16'
1313

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

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ org.gradle.jvmargs=-Xmx1536m
1515
# This option should only be used with decoupled projects. More details, visit
1616
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1717
# org.gradle.parallel=true
18+
org.gradle.configureondemand=false

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ 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-4.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8-all.zip

library/build.gradle

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ android {
2323
}
2424

2525
compileOptions {
26-
sourceCompatibility JavaVersion.VERSION_1_7
27-
targetCompatibility JavaVersion.VERSION_1_7
26+
sourceCompatibility JavaVersion.VERSION_1_8
27+
targetCompatibility JavaVersion.VERSION_1_8
2828
}
2929

3030
lintOptions {
@@ -34,15 +34,15 @@ android {
3434
}
3535

3636
dependencies {
37-
compile fileTree(include: ['*.jar'], dir: 'libs')
38-
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
37+
implementation fileTree(include: ['*.jar'], dir: 'libs')
38+
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
3939
exclude group: 'com.android.support', module: 'support-annotations'
4040
})
41-
testCompile 'junit:junit:4.12'
42-
provided 'com.android.support:support-v13:27.0.2'
43-
provided 'com.android.support:support-annotations:27.0.2'
44-
provided 'com.google.code.gson:gson:2.8.1'
45-
provided 'com.android.volley:volley:1.1.0'
46-
androidTestCompile 'com.android.support.test:runner:1.0.1'
47-
androidTestCompile 'com.android.support.test:rules:1.0.1'
41+
testImplementation 'junit:junit:4.12'
42+
api 'com.android.support:support-v13:27.1.1'
43+
api 'com.android.support:support-annotations:27.1.1'
44+
api 'com.google.code.gson:gson:2.8.2'
45+
api 'com.android.volley:volley:1.1.0'
46+
androidTestImplementation 'com.android.support.test:runner:1.0.2'
47+
androidTestImplementation 'com.android.support.test:rules:1.0.2'
4848
}

0 commit comments

Comments
 (0)