From 5e3be4025155ebeeefea0267df556bff483f027a Mon Sep 17 00:00:00 2001 From: Dan Hasting Date: Fri, 18 May 2018 17:27:21 -0400 Subject: [PATCH] Version 1.0 --- .gitignore | 2 +- app/build.gradle | 18 +++++++++--------- app/lint.xml | 6 ++++++ build.gradle | 2 +- 4 files changed, 17 insertions(+), 11 deletions(-) create mode 100644 app/lint.xml diff --git a/.gitignore b/.gitignore index 4967ab7..02f7649 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,4 @@ /.idea /gradle.properties app/src/main/res/values/keys.xml - +app/release/ diff --git a/app/build.gradle b/app/build.gradle index f0b80fa..7dc61a8 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -7,8 +7,8 @@ android { applicationId "com.danhasting.radar" minSdkVersion 16 targetSdkVersion 27 - versionCode 0 - versionName "0.0" + versionCode 2 + versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" javaCompileOptions { @@ -27,15 +27,15 @@ android { dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') - implementation 'com.android.support:appcompat-v7:27.1.0' - implementation 'com.android.support:design:27.1.0' - implementation 'com.android.support.constraint:constraint-layout:1.0.2' + implementation 'com.android.support:appcompat-v7:27.1.1' + implementation 'com.android.support:design:27.1.1' + implementation 'com.android.support.constraint:constraint-layout:1.1.0' implementation 'android.arch.lifecycle:extensions:1.1.1' testImplementation 'junit:junit:4.12' - androidTestImplementation 'com.android.support.test:runner:1.0.1' - androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' - implementation 'android.arch.persistence.room:runtime:1.0.0' - annotationProcessor 'android.arch.persistence.room:compiler:1.0.0' + androidTestImplementation 'com.android.support.test:runner:1.0.2' + androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' + implementation 'android.arch.persistence.room:runtime:1.1.0' + annotationProcessor 'android.arch.persistence.room:compiler:1.1.0' implementation 'com.x5dev:chunk-templates:3.3.1' implementation 'com.loopj.android:android-async-http:1.4.9' } diff --git a/app/lint.xml b/app/lint.xml new file mode 100644 index 0000000..751694a --- /dev/null +++ b/app/lint.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/build.gradle b/build.gradle index 40eaf05..26761a5 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:3.1.0' + classpath 'com.android.tools.build:gradle:3.1.2' // NOTE: Do not place your application dependencies here; they belong