Skip to content
This repository has been archived by the owner on Oct 27, 2022. It is now read-only.

Updated Dependency 'compile' to 'implementation' #20

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
}