aboutsummaryrefslogtreecommitdiff
path: root/input
diff options
context:
space:
mode:
authorDouglas Sigelbaum <sigelbaum@google.com>2018-03-19 16:05:01 -0700
committerFelipe Leme <felipeal@google.com>2018-04-18 17:20:20 +0000
commitb739a7b32add3ad0cae7974f917d93f8b92e719c (patch)
tree887bbfb2564457ae47b5d014a5b271c5be76a562 /input
parentb1e0caf022f6fb264a4407888b5d33352b8eb2dd (diff)
downloadandroid-b739a7b32add3ad0cae7974f917d93f8b92e719c.tar.gz
Autofill sample: Update build.gradles.
Bug: 75285224 Test: manual Change-Id: Ia3094958b49ea66fb2feb566cdd70df78c6628a9
Diffstat (limited to 'input')
-rw-r--r--input/autofill/AutofillFramework/Application/build.gradle15
-rw-r--r--input/autofill/AutofillFramework/afservice/build.gradle12
2 files changed, 13 insertions, 14 deletions
diff --git a/input/autofill/AutofillFramework/Application/build.gradle b/input/autofill/AutofillFramework/Application/build.gradle
index 4a877db7..50bbdc33 100644
--- a/input/autofill/AutofillFramework/Application/build.gradle
+++ b/input/autofill/AutofillFramework/Application/build.gradle
@@ -7,12 +7,11 @@ List<String> dirs = [
'main'] // main sample code; look here for the interesting stuff.
android {
- compileSdkVersion 26
- buildToolsVersion '26.0.2'
+ compileSdkVersion "android-P"
defaultConfig {
minSdkVersion 26
- targetSdkVersion 26
+ targetSdkVersion 28
}
compileOptions {
@@ -38,11 +37,11 @@ android {
}
dependencies {
- implementation "com.android.support:support-v4:26.1.0"
- implementation "com.android.support:support-v13:26.1.0"
- implementation "com.android.support:cardview-v7:26.1.0"
- implementation "com.android.support:appcompat-v7:26.1.0"
- implementation 'com.android.support:design:26.1.0'
+ implementation "com.android.support:support-v4:28.0.0-alpha1"
+ implementation "com.android.support:support-v13:28.0.0-alpha1"
+ implementation "com.android.support:cardview-v7:28.0.0-alpha1"
+ implementation "com.android.support:appcompat-v7:28.0.0-alpha1"
+ implementation 'com.android.support:design:28.0.0-alpha1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation group: 'com.google.guava', name: 'guava', version: '22.0-android'
}
diff --git a/input/autofill/AutofillFramework/afservice/build.gradle b/input/autofill/AutofillFramework/afservice/build.gradle
index 07ccafd4..f6142077 100644
--- a/input/autofill/AutofillFramework/afservice/build.gradle
+++ b/input/autofill/AutofillFramework/afservice/build.gradle
@@ -1,11 +1,11 @@
apply plugin: 'com.android.application'
android {
- compileSdkVersion 27
+ compileSdkVersion "android-P"
defaultConfig {
minSdkVersion 26
- targetSdkVersion 27
+ targetSdkVersion 28
versionCode 1
versionName "1.0"
@@ -30,17 +30,17 @@ android {
}
dependencies {
- implementation 'com.android.support:appcompat-v7:27.0.2'
+ implementation 'com.android.support:appcompat-v7:28.0.0-alpha1'
implementation "android.arch.persistence.room:runtime:1.0.0"
annotationProcessor 'android.arch.persistence.room:compiler:1.0.0'
implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'com.android.support:design:27.0.2'
+ implementation 'com.android.support:design:28.0.0-alpha1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
- implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.1'
+ implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.2'
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
implementation group: 'com.google.guava', name: 'guava', version: '22.0-android'
implementation "com.android.support.test.espresso:espresso-idling-resource:3.0.1"
- implementation "com.google.code.findbugs:jsr305:2.0.1"
+ implementation "com.google.code.findbugs:jsr305:3.0.2"
androidTestImplementation "junit:junit:4.12"
androidTestImplementation ("com.android.support.test.espresso:espresso-core:3.0.1")