Skip to content
1 change: 0 additions & 1 deletion auth/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ check.dependsOn 'assembleDebugAndroidTest'
android {
compileSdkVersion 29
flavorDimensions "minSdkVersion"

defaultConfig {
applicationId "com.google.firebase.quickstart.auth"
minSdkVersion 16
Expand Down
2 changes: 1 addition & 1 deletion build_pull_request.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ git fetch origin
# Get all the modules that were changed
while read line; do
module_name=${line%%/*}
if [[ ${MODULES} != *"${module_name}"* ]]; then
if [[ ${MODULES} != *"${module_name}" ]]; then
MODULES="${MODULES} ${module_name}"
fi
done < <(git diff --name-only origin/$GITHUB_BASE_REF)
Expand Down
1 change: 1 addition & 0 deletions mlkit-langid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ buildscript {
}
}


allprojects {
repositories {
mavenLocal()
Expand Down
1 change: 0 additions & 1 deletion mlkit-smartreply/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ android {
enabled = true
}
}

dependencies {
implementation project(':internal:chooserx')
implementation project(":internal:lintchecks")
Expand Down
2 changes: 1 addition & 1 deletion mlkit/app/src/main/java/EntryChoiceActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class EntryChoiceActivity : BaseEntryChoiceActivity() {
com.google.firebase.samples.apps.mlkit.java.ChooserActivity::class.java)),
Choice(
"Kotlin",
"Run the Firebase ML Kit quickstart written in Kotlin.",
"Run the Firebase ML Kit quickstart written in Kotlin",
Intent(
this,
com.google.firebase.samples.apps.mlkit.kotlin.ChooserActivity::class.java))
Expand Down