Skip to content

Commit

Permalink
Changed: Use double quotes instead of single quotes for all gradle de…
Browse files Browse the repository at this point in the history
…pendencies
  • Loading branch information
agnostic-apollo committed May 23, 2022
1 parent 0b4f456 commit 6213b7f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.2'
classpath "com.android.tools.build:gradle:4.2.2"
}
}

Expand Down
4 changes: 2 additions & 2 deletions terminal-emulator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion terminal-view/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ android {
}

dependencies {
testImplementation 'junit:junit:4.13.2'
testImplementation "junit:junit:4.13.2"
}

task sourceJar(type: Jar) {
Expand Down
10 changes: 5 additions & 5 deletions termux-shared/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ android {
compileSdkVersion project.properties.compileSdkVersion.toInteger()

dependencies {
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation "androidx.appcompat:appcompat:1.3.1"
implementation "androidx.annotation:annotation:1.3.0"
implementation "androidx.core:core:1.6.0"
implementation 'com.google.android.material:material:1.4.0'
implementation "com.google.android.material:material:1.4.0"
implementation "com.google.guava:guava:24.1-jre"
implementation "io.noties.markwon:core:$markwonVersion"
implementation "io.noties.markwon:ext-strikethrough:$markwonVersion"
implementation "io.noties.markwon:linkify:$markwonVersion"
implementation "io.noties.markwon:recycler:$markwonVersion"
implementation 'org.lsposed.hiddenapibypass:hiddenapibypass:2.0'
implementation "org.lsposed.hiddenapibypass:hiddenapibypass:2.0"

// Do not increment version higher than 1.0.0-alpha09 since it will break ViewUtils and needs to be looked into
// noinspection GradleDependency
Expand Down Expand Up @@ -61,8 +61,8 @@ android {

dependencies {
testImplementation "junit:junit:4.13.2"
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
androidTestImplementation "androidx.test.ext:junit:1.1.3"
androidTestImplementation "androidx.test.espresso:espresso-core:3.4.0"
}

task sourceJar(type: Jar) {
Expand Down

0 comments on commit 6213b7f

Please sign in to comment.