aboutsummaryrefslogtreecommitdiff
path: root/input/autofill/AutofillFramework/kotlinApp
diff options
context:
space:
mode:
authorDouglas Sigelbaum <sigelbaum@google.com>2017-06-12 13:09:47 -0700
committerDouglas Sigelbaum <sigelbaum@google.com>2017-06-22 10:54:26 -0700
commit7c931def08ecff434a0b12e2dca6f38336a340bc (patch)
tree2616429ff591bed1cb9ada13b0cd8ed03b2990f5 /input/autofill/AutofillFramework/kotlinApp
parent7c41f88d017831fa89d2473063a881e3f54394e6 (diff)
downloadandroid-7c931def08ecff434a0b12e2dca6f38336a340bc.tar.gz
Updating gradle dependencies for beta2 autofill sample.
Also removed .gitignore for java sample. Bug: 38182790 Test: manual Change-Id: I5044b0a9aabda7437f9988244d3987b7893c1efb
Diffstat (limited to 'input/autofill/AutofillFramework/kotlinApp')
-rw-r--r--input/autofill/AutofillFramework/kotlinApp/Application/build.gradle24
1 files changed, 11 insertions, 13 deletions
diff --git a/input/autofill/AutofillFramework/kotlinApp/Application/build.gradle b/input/autofill/AutofillFramework/kotlinApp/Application/build.gradle
index c4b3fbb3..8e0189d1 100644
--- a/input/autofill/AutofillFramework/kotlinApp/Application/build.gradle
+++ b/input/autofill/AutofillFramework/kotlinApp/Application/build.gradle
@@ -2,21 +2,27 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
+dependencies {
+ compile "com.android.support:support-v4:26.0.0-beta2"
+ compile "com.android.support:support-v13:26.0.0-beta2"
+ compile 'com.android.support:appcompat-v7:26.0.0-beta2'
+ compile 'com.google.code.gson:gson:2.8.1'
+ compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
+}
+
// The sample build uses multiple directories to
// keep boilerplate and common code separate from
// the main sample code.
List<String> dirs = [
- 'main', // main sample code; look here for the interesting stuff.
- 'common', // components that are reused by multiple samples
- 'template'] // boilerplate code that is generated by the sample template process
+ 'main'] // main sample code; look here for the interesting stuff.
android {
compileSdkVersion 26
buildToolsVersion "26.0.0 rc2"
defaultConfig {
- minSdkVersion "O"
- targetSdkVersion "O"
+ minSdkVersion 26
+ targetSdkVersion 26
}
compileOptions {
@@ -36,12 +42,4 @@ android {
}
- dependencies {
- compile "com.android.support:support-v4:26.0.0-beta1"
- compile "com.android.support:support-v13:26.0.0-beta1"
- compile 'com.android.support:appcompat-v7:26.0.0-beta1'
- compile 'com.google.code.gson:gson:2.8.0'
- compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
- }
-
}