Update Android Components to 91.0.20210610143711. (#19946)

upstream-sync
Sebastian Kaspari 3 years ago committed by GitHub
parent 0c1e712ca8
commit c0531ffa82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -28,6 +28,9 @@
android:exported="false"
android:theme="@style/Theme.AppCompat.Translucent" />
<activity android:name=".autofill.AutofillSearchActivity"
android:exported="false" />
<service
android:name=".autofill.AutofillService"
android:label="@string/app_name"

@ -0,0 +1,20 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package org.mozilla.fenix.autofill
import android.os.Build
import androidx.annotation.RequiresApi
import mozilla.components.feature.autofill.AutofillConfiguration
import mozilla.components.feature.autofill.ui.AbstractAutofillSearchActivity
import org.mozilla.fenix.ext.components
/**
* Activity responsible for letting the user manually search and pick credentials for auto-filling a
* third-party app.
*/
@RequiresApi(Build.VERSION_CODES.O)
class AutofillSearchActivity : AbstractAutofillSearchActivity() {
override val configuration: AutofillConfiguration by lazy { components.autofillConfiguration }
}

@ -23,6 +23,7 @@ import org.mozilla.fenix.Config
import org.mozilla.fenix.HomeActivity
import org.mozilla.fenix.R
import org.mozilla.fenix.autofill.AutofillConfirmActivity
import org.mozilla.fenix.autofill.AutofillSearchActivity
import org.mozilla.fenix.autofill.AutofillUnlockActivity
import org.mozilla.fenix.components.metrics.AppStartupTelemetry
import org.mozilla.fenix.ext.settings
@ -165,6 +166,7 @@ class Components(private val context: Context) {
publicSuffixList = publicSuffixList,
unlockActivity = AutofillUnlockActivity::class.java,
confirmActivity = AutofillConfirmActivity::class.java,
searchActivity = AutofillSearchActivity::class.java,
applicationName = context.getString(R.string.app_name),
httpClient = core.client
)

@ -12,6 +12,9 @@
android:exported="false"
android:theme="@style/Theme.AppCompat.Translucent" />
<activity android:name=".autofill.AutofillSearchActivity"
android:exported="false" />
<service
android:name=".autofill.AutofillService"
android:label="@string/app_name"

@ -3,5 +3,5 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
object AndroidComponents {
const val VERSION = "91.0.20210609190338"
const val VERSION = "91.0.20210610143711"
}

Loading…
Cancel
Save