Changed: Use double quotes instead of single quotes for all gradle dependencies

This commit is contained in:
agnostic-apollo
2022-04-26 01:49:11 +05:00
parent 0b4f456132
commit 6213b7f782
4 changed files with 9 additions and 9 deletions

View File

@@ -50,8 +50,8 @@ tasks.withType(Test) {
}
dependencies {
implementation 'androidx.annotation:annotation:1.3.0'
testImplementation 'junit:junit:4.13.2'
implementation "androidx.annotation:annotation:1.3.0"
testImplementation "junit:junit:4.13.2"
}
task sourceJar(type: Jar) {