diff --git a/.idea/caches/build_file_checksums.ser b/.idea/caches/build_file_checksums.ser new file mode 100644 index 0000000..9702d48 Binary files /dev/null and b/.idea/caches/build_file_checksums.ser differ diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 0000000..30aa626 --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..7ac24c7 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,18 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..99202cc --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..5244278 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml new file mode 100644 index 0000000..7f68460 --- /dev/null +++ b/.idea/runConfigurations.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/Step_1___Dao.xml b/.idea/runConfigurations/Step_1___Dao.xml deleted file mode 100644 index bd680d9..0000000 --- a/.idea/runConfigurations/Step_1___Dao.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations/Step_1___Solution.xml b/.idea/runConfigurations/Step_1___Solution.xml deleted file mode 100644 index 9ea1d6d..0000000 --- a/.idea/runConfigurations/Step_1___Solution.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations/Step_2___Relationships.xml b/.idea/runConfigurations/Step_2___Relationships.xml deleted file mode 100644 index 6c22f64..0000000 --- a/.idea/runConfigurations/Step_2___Relationships.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations/Step_3___Async_calls.xml b/.idea/runConfigurations/Step_3___Async_calls.xml deleted file mode 100644 index cefcc50..0000000 --- a/.idea/runConfigurations/Step_3___Async_calls.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations/Step_3___Solution.xml b/.idea/runConfigurations/Step_3___Solution.xml deleted file mode 100644 index cbec36e..0000000 --- a/.idea/runConfigurations/Step_3___Solution.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations/Step_4___Solution.xml b/.idea/runConfigurations/Step_4___Solution.xml deleted file mode 100644 index 5190a18..0000000 --- a/.idea/runConfigurations/Step_4___Solution.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations/Step_4___Type_converters.xml b/.idea/runConfigurations/Step_4___Type_converters.xml deleted file mode 100644 index b186340..0000000 --- a/.idea/runConfigurations/Step_4___Type_converters.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations/Step_5___Custom_Results.xml b/.idea/runConfigurations/Step_5___Custom_Results.xml deleted file mode 100644 index 7ad9073..0000000 --- a/.idea/runConfigurations/Step_5___Custom_Results.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations/Step_5___Solution.xml b/.idea/runConfigurations/Step_5___Solution.xml deleted file mode 100644 index a330ff3..0000000 --- a/.idea/runConfigurations/Step_5___Solution.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle index f272c07..cba1d4c 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -18,7 +18,7 @@ apply plugin: 'com.android.application' android { compileSdkVersion 27 - buildToolsVersion "27.0.0" + buildToolsVersion '27.0.3' defaultConfig { applicationId 'com.example.android.codelabs.persistence' minSdkVersion 21 @@ -46,19 +46,19 @@ android { } dependencies { - compile fileTree(include: ['*.jar'], dir: 'libs') - androidTestCompile('com.android.support.test.espresso:espresso-core:' + rootProject.espressoVersion, { + implementation fileTree(include: ['*.jar'], dir: 'libs') + androidTestImplementation('com.android.support.test.espresso:espresso-core:' + rootProject.espressoVersion, { exclude group: 'com.android.support', module: 'support-annotations' }) - compile 'com.android.support:appcompat-v7:' + rootProject.supportLibVersion - compile 'com.android.support:cardview-v7:' + rootProject.supportLibVersion - compile 'com.android.support:recyclerview-v7:' + rootProject.supportLibVersion - compile 'com.android.support:support-v4:' + rootProject.supportLibVersion + implementation 'com.android.support:appcompat-v7:' + rootProject.supportLibVersion + implementation 'com.android.support:cardview-v7:' + rootProject.supportLibVersion + implementation 'com.android.support:recyclerview-v7:' + rootProject.supportLibVersion + implementation 'com.android.support:support-v4:' + rootProject.supportLibVersion - testCompile 'junit:junit:4.12' - compile 'android.arch.lifecycle:extensions:' + rootProject.archLifecycleVersion - compile 'android.arch.persistence.room:runtime:' + rootProject.archRoomVersion + testImplementation 'junit:junit:4.12' + implementation 'android.arch.lifecycle:extensions:' + rootProject.archLifecycleVersion + implementation 'android.arch.persistence.room:runtime:' + rootProject.archRoomVersion annotationProcessor 'android.arch.lifecycle:compiler:' + rootProject.archLifecycleVersion annotationProcessor 'android.arch.persistence.room:compiler:' + rootProject.archRoomVersion } diff --git a/build.gradle b/build.gradle index 2a6ce4e..e140b2c 100644 --- a/build.gradle +++ b/build.gradle @@ -22,7 +22,7 @@ buildscript { google() } dependencies { - classpath 'com.android.tools.build:gradle:3.0.0' + classpath 'com.android.tools.build:gradle:3.1.4' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index a052f6e..edce5fc 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Mon Nov 13 23:43:41 GMT 2017 +#Fri Sep 14 11:27:18 BRT 2018 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip