diff --git a/build.gradle b/build.gradle index aa098101..80ddd4bd 100644 --- a/build.gradle +++ b/build.gradle @@ -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" } } diff --git a/terminal-emulator/build.gradle b/terminal-emulator/build.gradle index f3d567b3..afc57e9f 100644 --- a/terminal-emulator/build.gradle +++ b/terminal-emulator/build.gradle @@ -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) { diff --git a/terminal-view/build.gradle b/terminal-view/build.gradle index 1504f688..d603da28 100644 --- a/terminal-view/build.gradle +++ b/terminal-view/build.gradle @@ -29,7 +29,7 @@ android { } dependencies { - testImplementation 'junit:junit:4.13.2' + testImplementation "junit:junit:4.13.2" } task sourceJar(type: Jar) { diff --git a/termux-shared/build.gradle b/termux-shared/build.gradle index 0f3f6cf9..62847820 100644 --- a/termux-shared/build.gradle +++ b/termux-shared/build.gradle @@ -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 @@ -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) {