diff --git a/auth/src/main/java/com/firebase/ui/auth/compose/configuration/auth_provider/AuthProvider.kt b/auth/src/main/java/com/firebase/ui/auth/compose/configuration/auth_provider/AuthProvider.kt index 0cf400096..f5fd12173 100644 --- a/auth/src/main/java/com/firebase/ui/auth/compose/configuration/auth_provider/AuthProvider.kt +++ b/auth/src/main/java/com/firebase/ui/auth/compose/configuration/auth_provider/AuthProvider.kt @@ -88,8 +88,7 @@ internal enum class Provider( ANONYMOUS("anonymous", providerName = "Anonymous"), MICROSOFT("microsoft.com", providerName = "Microsoft", isSocialProvider = true), YAHOO("yahoo.com", providerName = "Yahoo", isSocialProvider = true), - APPLE("apple.com", providerName = "Apple", isSocialProvider = true), - LINE("oidc.line", providerName = "LINE", isSocialProvider = true); + APPLE("apple.com", providerName = "Apple", isSocialProvider = true); companion object { fun fromId(id: String): Provider? { @@ -890,18 +889,6 @@ abstract class AuthProvider(open val providerId: String, open val providerName: } } - class Line( - override val scopes: List, - override val customParameters: Map, - ) : OAuth( - providerId = Provider.LINE.id, - providerName = Provider.LINE.providerName, - scopes = scopes, - customParameters = customParameters - ) { - internal fun validate() {} - } - /** * A generic OAuth provider for any unsupported provider. */ diff --git a/auth/src/main/java/com/firebase/ui/auth/compose/configuration/string_provider/AuthUIStringProvider.kt b/auth/src/main/java/com/firebase/ui/auth/compose/configuration/string_provider/AuthUIStringProvider.kt index f2ec0672f..35c7aa013 100644 --- a/auth/src/main/java/com/firebase/ui/auth/compose/configuration/string_provider/AuthUIStringProvider.kt +++ b/auth/src/main/java/com/firebase/ui/auth/compose/configuration/string_provider/AuthUIStringProvider.kt @@ -97,9 +97,6 @@ interface AuthUIStringProvider { /** Button text for Yahoo sign-in option */ val signInWithYahoo: String - /** Button text for LINE sign-in option */ - val signInWithLine: String - /** Error message when email address field is empty */ val missingEmailAddress: String diff --git a/auth/src/main/java/com/firebase/ui/auth/compose/configuration/string_provider/DefaultAuthUIStringProvider.kt b/auth/src/main/java/com/firebase/ui/auth/compose/configuration/string_provider/DefaultAuthUIStringProvider.kt index ffbb28b57..ff9560f94 100644 --- a/auth/src/main/java/com/firebase/ui/auth/compose/configuration/string_provider/DefaultAuthUIStringProvider.kt +++ b/auth/src/main/java/com/firebase/ui/auth/compose/configuration/string_provider/DefaultAuthUIStringProvider.kt @@ -79,8 +79,6 @@ class DefaultAuthUIStringProvider( get() = localizedContext.getString(R.string.fui_sign_in_with_microsoft) override val signInWithYahoo: String get() = localizedContext.getString(R.string.fui_sign_in_with_yahoo) - override val signInWithLine: String - get() = localizedContext.getString(R.string.fui_sign_in_with_line) /** * Email Validator Strings diff --git a/auth/src/main/java/com/firebase/ui/auth/compose/configuration/theme/ProviderStyleDefaults.kt b/auth/src/main/java/com/firebase/ui/auth/compose/configuration/theme/ProviderStyleDefaults.kt index 8b36bc748..a0ea457a7 100644 --- a/auth/src/main/java/com/firebase/ui/auth/compose/configuration/theme/ProviderStyleDefaults.kt +++ b/auth/src/main/java/com/firebase/ui/auth/compose/configuration/theme/ProviderStyleDefaults.kt @@ -111,14 +111,6 @@ internal object ProviderStyleDefaults { contentColor = Color.White ) } - - Provider.LINE -> { - provider.id to AuthUITheme.ProviderStyle( - icon = AuthUIAsset.Resource(R.drawable.fui_ic_line_24dp), - backgroundColor = Color(0xFF06C755), - contentColor = Color.White - ) - } } } } \ No newline at end of file diff --git a/auth/src/main/java/com/firebase/ui/auth/compose/ui/components/AuthProviderButton.kt b/auth/src/main/java/com/firebase/ui/auth/compose/ui/components/AuthProviderButton.kt index 9e9f792d4..b0ad943db 100644 --- a/auth/src/main/java/com/firebase/ui/auth/compose/ui/components/AuthProviderButton.kt +++ b/auth/src/main/java/com/firebase/ui/auth/compose/ui/components/AuthProviderButton.kt @@ -174,7 +174,6 @@ internal fun resolveProviderLabel( Provider.MICROSOFT -> stringProvider.signInWithMicrosoft Provider.YAHOO -> stringProvider.signInWithYahoo Provider.APPLE -> stringProvider.signInWithApple - Provider.LINE -> stringProvider.signInWithLine null -> "Unknown Provider" } } diff --git a/auth/src/main/java/com/firebase/ui/auth/compose/ui/screens/FirebaseAuthScreen.kt b/auth/src/main/java/com/firebase/ui/auth/compose/ui/screens/FirebaseAuthScreen.kt index 289d8c688..ecd00fca7 100644 --- a/auth/src/main/java/com/firebase/ui/auth/compose/ui/screens/FirebaseAuthScreen.kt +++ b/auth/src/main/java/com/firebase/ui/auth/compose/ui/screens/FirebaseAuthScreen.kt @@ -118,7 +118,6 @@ fun FirebaseAuthScreen( val yahooProvider = configuration.providers.filterIsInstance().firstOrNull() val twitterProvider = configuration.providers.filterIsInstance().firstOrNull() - val lineProvider = configuration.providers.filterIsInstance().firstOrNull() val genericOAuthProviders = configuration.providers.filterIsInstance() @@ -184,14 +183,6 @@ fun FirebaseAuthScreen( ) } - val onSignInWithLine = lineProvider?.let { - authUI.rememberOAuthSignInHandler( - activity = activity, - config = configuration, - provider = it - ) - } - val genericOAuthHandlers = genericOAuthProviders.associateWith { authUI.rememberOAuthSignInHandler( activity = activity, @@ -241,8 +232,6 @@ fun FirebaseAuthScreen( is AuthProvider.Twitter -> onSignInWithTwitter?.invoke() - is AuthProvider.Line -> onSignInWithLine?.invoke() - is AuthProvider.GenericOAuth -> genericOAuthHandlers[provider]?.invoke() else -> { diff --git a/auth/src/main/res/values-ar/strings.xml b/auth/src/main/res/values-ar/strings.xml index 2f011d5a2..01277e051 100755 --- a/auth/src/main/res/values-ar/strings.xml +++ b/auth/src/main/res/values-ar/strings.xml @@ -21,7 +21,6 @@ تسجيل الدخول باستخدام Apple تسجيل الدخول باستخدام Microsoft تسجيل الدخول باستخدام Yahoo - تسجيل الدخول باستخدام LINE التالي البريد الإلكتروني رقم الهاتف diff --git a/auth/src/main/res/values-b+es+419/strings.xml b/auth/src/main/res/values-b+es+419/strings.xml index 735daf9d2..182fde462 100755 --- a/auth/src/main/res/values-b+es+419/strings.xml +++ b/auth/src/main/res/values-b+es+419/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-bg/strings.xml b/auth/src/main/res/values-bg/strings.xml index a7c866703..fe1e5b607 100755 --- a/auth/src/main/res/values-bg/strings.xml +++ b/auth/src/main/res/values-bg/strings.xml @@ -21,7 +21,6 @@ Вход с профил в Apple Вход с профил в Microsoft Вход с профил в Yahoo - Вход с профил в LINE Напред Имейл Телефонен номер diff --git a/auth/src/main/res/values-bn/strings.xml b/auth/src/main/res/values-bn/strings.xml index 46c328cd4..487f3492b 100755 --- a/auth/src/main/res/values-bn/strings.xml +++ b/auth/src/main/res/values-bn/strings.xml @@ -21,7 +21,6 @@ Apple-এর সাথে সাইন-ইন করুন Microsoft-এর সাথে সাইন-ইন করুন Yahoo-এর সাথে সাইন-ইন করুন - LINE-এর সাথে সাইন-ইন করুন পরবর্তী ইমেল ফোন নম্বর diff --git a/auth/src/main/res/values-ca/strings.xml b/auth/src/main/res/values-ca/strings.xml index 711b6f7f6..882ef79eb 100755 --- a/auth/src/main/res/values-ca/strings.xml +++ b/auth/src/main/res/values-ca/strings.xml @@ -21,7 +21,6 @@ Inicia la sessió amb Apple Inicia la sessió amb Microsoft Inicia la sessió amb Yahoo - Inicia la sessió amb LINE Següent Adreça electrònica Número de telèfon diff --git a/auth/src/main/res/values-cs/strings.xml b/auth/src/main/res/values-cs/strings.xml index fa950f086..dcac3ec97 100755 --- a/auth/src/main/res/values-cs/strings.xml +++ b/auth/src/main/res/values-cs/strings.xml @@ -21,7 +21,6 @@ Přihlásit se účtem Apple Přihlásit se účtem Microsoft Přihlásit se účtem Yahoo - Přihlásit se účtem LINE Další E-mail Telefonní číslo diff --git a/auth/src/main/res/values-da/strings.xml b/auth/src/main/res/values-da/strings.xml index 482690fd3..406407a73 100755 --- a/auth/src/main/res/values-da/strings.xml +++ b/auth/src/main/res/values-da/strings.xml @@ -21,7 +21,6 @@ Log ind med Apple Log ind med Microsoft Log ind med Yahoo - Log ind med LINE Næste Mail Telefonnummer diff --git a/auth/src/main/res/values-de-rAT/strings.xml b/auth/src/main/res/values-de-rAT/strings.xml index b7f31ffcc..0429f9bf3 100755 --- a/auth/src/main/res/values-de-rAT/strings.xml +++ b/auth/src/main/res/values-de-rAT/strings.xml @@ -21,7 +21,6 @@ Über Apple anmelden Über Microsoft anmelden Über Yahoo anmelden - Über LINE anmelden Weiter E-Mail-Adresse Telefonnummer diff --git a/auth/src/main/res/values-de-rCH/strings.xml b/auth/src/main/res/values-de-rCH/strings.xml index 7aed683e2..ebae05298 100755 --- a/auth/src/main/res/values-de-rCH/strings.xml +++ b/auth/src/main/res/values-de-rCH/strings.xml @@ -21,7 +21,6 @@ Über Apple anmelden Über Microsoft anmelden Über Yahoo anmelden - Über LINE anmelden Weiter E-Mail-Adresse Telefonnummer diff --git a/auth/src/main/res/values-de/strings.xml b/auth/src/main/res/values-de/strings.xml index 910ec1e82..99bb5ca20 100755 --- a/auth/src/main/res/values-de/strings.xml +++ b/auth/src/main/res/values-de/strings.xml @@ -21,7 +21,6 @@ Über Apple anmelden Über Microsoft anmelden Über Yahoo anmelden - Mit LINE anmelden Weiter E-Mail-Adresse Telefonnummer diff --git a/auth/src/main/res/values-el/strings.xml b/auth/src/main/res/values-el/strings.xml index 8d3127fe5..b75c0a7db 100755 --- a/auth/src/main/res/values-el/strings.xml +++ b/auth/src/main/res/values-el/strings.xml @@ -21,7 +21,6 @@ Σύνδεση μέσω Apple Σύνδεση μέσω Microsoft Σύνδεση μέσω Yahoo - Σύνδεση μέσω LINE Επόμενο Ηλεκτρονικό ταχυδρομείο Αριθμός τηλεφώνου diff --git a/auth/src/main/res/values-en-rAU/strings.xml b/auth/src/main/res/values-en-rAU/strings.xml index 3bfba59c5..6af66ddfb 100755 --- a/auth/src/main/res/values-en-rAU/strings.xml +++ b/auth/src/main/res/values-en-rAU/strings.xml @@ -21,7 +21,6 @@ Sign in with Apple Sign in with Microsoft Sign in with Yahoo - Sign in with LINE Next Email Phone number diff --git a/auth/src/main/res/values-en-rCA/strings.xml b/auth/src/main/res/values-en-rCA/strings.xml index 0369c4b36..b12b8be66 100755 --- a/auth/src/main/res/values-en-rCA/strings.xml +++ b/auth/src/main/res/values-en-rCA/strings.xml @@ -21,7 +21,6 @@ Sign in with Apple Sign in with Microsoft Sign in with Yahoo - Sign in with LINE Next Email Phone number diff --git a/auth/src/main/res/values-en-rGB/strings.xml b/auth/src/main/res/values-en-rGB/strings.xml index f694f913d..a7d2285a8 100755 --- a/auth/src/main/res/values-en-rGB/strings.xml +++ b/auth/src/main/res/values-en-rGB/strings.xml @@ -21,7 +21,6 @@ Sign in with Apple Sign in with Microsoft Sign in with Yahoo - Sign in with LINE Next Email Phone number diff --git a/auth/src/main/res/values-en-rIE/strings.xml b/auth/src/main/res/values-en-rIE/strings.xml index 5f290c2dd..debcd6154 100755 --- a/auth/src/main/res/values-en-rIE/strings.xml +++ b/auth/src/main/res/values-en-rIE/strings.xml @@ -21,7 +21,6 @@ Sign in with Apple Sign in with Microsoft Sign in with Yahoo - Sign in with LINE Next Email Phone number diff --git a/auth/src/main/res/values-en-rIN/strings.xml b/auth/src/main/res/values-en-rIN/strings.xml index 5f290c2dd..debcd6154 100755 --- a/auth/src/main/res/values-en-rIN/strings.xml +++ b/auth/src/main/res/values-en-rIN/strings.xml @@ -21,7 +21,6 @@ Sign in with Apple Sign in with Microsoft Sign in with Yahoo - Sign in with LINE Next Email Phone number diff --git a/auth/src/main/res/values-en-rSG/strings.xml b/auth/src/main/res/values-en-rSG/strings.xml index 5f290c2dd..debcd6154 100755 --- a/auth/src/main/res/values-en-rSG/strings.xml +++ b/auth/src/main/res/values-en-rSG/strings.xml @@ -21,7 +21,6 @@ Sign in with Apple Sign in with Microsoft Sign in with Yahoo - Sign in with LINE Next Email Phone number diff --git a/auth/src/main/res/values-en-rZA/strings.xml b/auth/src/main/res/values-en-rZA/strings.xml index 5f290c2dd..debcd6154 100755 --- a/auth/src/main/res/values-en-rZA/strings.xml +++ b/auth/src/main/res/values-en-rZA/strings.xml @@ -21,7 +21,6 @@ Sign in with Apple Sign in with Microsoft Sign in with Yahoo - Sign in with LINE Next Email Phone number diff --git a/auth/src/main/res/values-es-rAR/strings.xml b/auth/src/main/res/values-es-rAR/strings.xml index 64e0f1333..0f128d7be 100755 --- a/auth/src/main/res/values-es-rAR/strings.xml +++ b/auth/src/main/res/values-es-rAR/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-es-rBO/strings.xml b/auth/src/main/res/values-es-rBO/strings.xml index c63da923b..c4c840008 100755 --- a/auth/src/main/res/values-es-rBO/strings.xml +++ b/auth/src/main/res/values-es-rBO/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-es-rCL/strings.xml b/auth/src/main/res/values-es-rCL/strings.xml index c63da923b..c4c840008 100755 --- a/auth/src/main/res/values-es-rCL/strings.xml +++ b/auth/src/main/res/values-es-rCL/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-es-rCO/strings.xml b/auth/src/main/res/values-es-rCO/strings.xml index c63da923b..c4c840008 100755 --- a/auth/src/main/res/values-es-rCO/strings.xml +++ b/auth/src/main/res/values-es-rCO/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-es-rCR/strings.xml b/auth/src/main/res/values-es-rCR/strings.xml index c63da923b..c4c840008 100755 --- a/auth/src/main/res/values-es-rCR/strings.xml +++ b/auth/src/main/res/values-es-rCR/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-es-rDO/strings.xml b/auth/src/main/res/values-es-rDO/strings.xml index c63da923b..c4c840008 100755 --- a/auth/src/main/res/values-es-rDO/strings.xml +++ b/auth/src/main/res/values-es-rDO/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-es-rEC/strings.xml b/auth/src/main/res/values-es-rEC/strings.xml index c63da923b..c4c840008 100755 --- a/auth/src/main/res/values-es-rEC/strings.xml +++ b/auth/src/main/res/values-es-rEC/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-es-rGT/strings.xml b/auth/src/main/res/values-es-rGT/strings.xml index c63da923b..c4c840008 100755 --- a/auth/src/main/res/values-es-rGT/strings.xml +++ b/auth/src/main/res/values-es-rGT/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-es-rHN/strings.xml b/auth/src/main/res/values-es-rHN/strings.xml index c63da923b..c4c840008 100755 --- a/auth/src/main/res/values-es-rHN/strings.xml +++ b/auth/src/main/res/values-es-rHN/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-es-rMX/strings.xml b/auth/src/main/res/values-es-rMX/strings.xml index c63da923b..c4c840008 100755 --- a/auth/src/main/res/values-es-rMX/strings.xml +++ b/auth/src/main/res/values-es-rMX/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-es-rNI/strings.xml b/auth/src/main/res/values-es-rNI/strings.xml index c63da923b..c4c840008 100755 --- a/auth/src/main/res/values-es-rNI/strings.xml +++ b/auth/src/main/res/values-es-rNI/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-es-rPA/strings.xml b/auth/src/main/res/values-es-rPA/strings.xml index c63da923b..c4c840008 100755 --- a/auth/src/main/res/values-es-rPA/strings.xml +++ b/auth/src/main/res/values-es-rPA/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-es-rPE/strings.xml b/auth/src/main/res/values-es-rPE/strings.xml index c63da923b..c4c840008 100755 --- a/auth/src/main/res/values-es-rPE/strings.xml +++ b/auth/src/main/res/values-es-rPE/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-es-rPR/strings.xml b/auth/src/main/res/values-es-rPR/strings.xml index c63da923b..c4c840008 100755 --- a/auth/src/main/res/values-es-rPR/strings.xml +++ b/auth/src/main/res/values-es-rPR/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-es-rPY/strings.xml b/auth/src/main/res/values-es-rPY/strings.xml index c63da923b..c4c840008 100755 --- a/auth/src/main/res/values-es-rPY/strings.xml +++ b/auth/src/main/res/values-es-rPY/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-es-rSV/strings.xml b/auth/src/main/res/values-es-rSV/strings.xml index c63da923b..c4c840008 100755 --- a/auth/src/main/res/values-es-rSV/strings.xml +++ b/auth/src/main/res/values-es-rSV/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-es-rUS/strings.xml b/auth/src/main/res/values-es-rUS/strings.xml index c63da923b..c4c840008 100755 --- a/auth/src/main/res/values-es-rUS/strings.xml +++ b/auth/src/main/res/values-es-rUS/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-es-rUY/strings.xml b/auth/src/main/res/values-es-rUY/strings.xml index c63da923b..c4c840008 100755 --- a/auth/src/main/res/values-es-rUY/strings.xml +++ b/auth/src/main/res/values-es-rUY/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-es-rVE/strings.xml b/auth/src/main/res/values-es-rVE/strings.xml index c63da923b..c4c840008 100755 --- a/auth/src/main/res/values-es-rVE/strings.xml +++ b/auth/src/main/res/values-es-rVE/strings.xml @@ -21,7 +21,6 @@ Acceder con Apple Acceder con Microsoft Acceder con Yahoo - Acceder con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-es/strings.xml b/auth/src/main/res/values-es/strings.xml index 22a24bbc1..4594f49a6 100755 --- a/auth/src/main/res/values-es/strings.xml +++ b/auth/src/main/res/values-es/strings.xml @@ -21,7 +21,6 @@ Iniciar sesión con Apple Iniciar sesión con Microsoft Iniciar sesión con Yahoo - Iniciar sesión con LINE Siguiente Correo electrónico Número de teléfono diff --git a/auth/src/main/res/values-fa/strings.xml b/auth/src/main/res/values-fa/strings.xml index 89750fe38..3b8084c47 100755 --- a/auth/src/main/res/values-fa/strings.xml +++ b/auth/src/main/res/values-fa/strings.xml @@ -21,7 +21,6 @@ ورود به سیستم با Apple ورود به سیستم با Microsoft ورود به سیستم با Yahoo - ورود به سیستم با LINE بعدی ایمیل شماره تلفن diff --git a/auth/src/main/res/values-fi/strings.xml b/auth/src/main/res/values-fi/strings.xml index 40a794d7a..5bdedb548 100755 --- a/auth/src/main/res/values-fi/strings.xml +++ b/auth/src/main/res/values-fi/strings.xml @@ -21,7 +21,6 @@ Kirjaudu sisään Apple-tilillä Kirjaudu sisään Microsoft-tilillä Kirjaudu sisään Yahoo-tilillä - Kirjaudu sisään LINE-tilillä Seuraava Sähköposti Puhelinnumero diff --git a/auth/src/main/res/values-fil/strings.xml b/auth/src/main/res/values-fil/strings.xml index 89295dfb5..c5dd9ea3d 100755 --- a/auth/src/main/res/values-fil/strings.xml +++ b/auth/src/main/res/values-fil/strings.xml @@ -21,7 +21,6 @@ Mag-sign in sa Apple Mag-sign in sa Microsoft Mag-sign in sa Yahoo - Mag-sign in sa LINE Susunod Mag-email Numero ng Telepono diff --git a/auth/src/main/res/values-fr-rCH/strings.xml b/auth/src/main/res/values-fr-rCH/strings.xml index 58e3e259f..694db5f6a 100755 --- a/auth/src/main/res/values-fr-rCH/strings.xml +++ b/auth/src/main/res/values-fr-rCH/strings.xml @@ -21,7 +21,6 @@ Se connecter avec Apple Se connecter avec Microsoft Se connecter avec Yahoo - Se connecter avec LINE Suivant E-mail Numéro de téléphone diff --git a/auth/src/main/res/values-fr/strings.xml b/auth/src/main/res/values-fr/strings.xml index e6590cd53..f516de3f4 100755 --- a/auth/src/main/res/values-fr/strings.xml +++ b/auth/src/main/res/values-fr/strings.xml @@ -21,7 +21,6 @@ Se connecter avec Apple Se connecter avec Microsoft Se connecter avec Yahoo - Se connecter avec LINE Suivant E-mail Numéro de téléphone diff --git a/auth/src/main/res/values-gsw/strings.xml b/auth/src/main/res/values-gsw/strings.xml index cb5d5afbe..8e27e6118 100755 --- a/auth/src/main/res/values-gsw/strings.xml +++ b/auth/src/main/res/values-gsw/strings.xml @@ -21,7 +21,6 @@ Über Apple anmelden Über Microsoft anmelden Über Yahoo anmelden - Über LINE anmelden Weiter E-Mail-Adresse Telefonnummer diff --git a/auth/src/main/res/values-gu/strings.xml b/auth/src/main/res/values-gu/strings.xml index cc2015910..d9380973c 100755 --- a/auth/src/main/res/values-gu/strings.xml +++ b/auth/src/main/res/values-gu/strings.xml @@ -21,7 +21,6 @@ Apple વડે સાઇન ઇન કરો Microsoft વડે સાઇન ઇન કરો Yahoo વડે સાઇન ઇન કરો - LINE વડે સાઇન ઇન કરો આગળ ઇમેઇલ ફોન નંબર diff --git a/auth/src/main/res/values-hi/strings.xml b/auth/src/main/res/values-hi/strings.xml index 0a3daa3a3..9f040de31 100755 --- a/auth/src/main/res/values-hi/strings.xml +++ b/auth/src/main/res/values-hi/strings.xml @@ -21,7 +21,6 @@ Apple खाते से साइन इन करें Microsoft खाते से साइन इन करें Yahoo खाते से साइन इन करें - LINE से साइन इन करें अगला ईमेल फ़ोन नंबर diff --git a/auth/src/main/res/values-hr/strings.xml b/auth/src/main/res/values-hr/strings.xml index 3d04b5737..3ae1affc6 100755 --- a/auth/src/main/res/values-hr/strings.xml +++ b/auth/src/main/res/values-hr/strings.xml @@ -21,7 +21,6 @@ Prijavite se Apple računom Prijavite se Microsoft računom Prijavite se Yahoo računom - Prijavite se LINE računom Dalje E-adresa Telefonski broj diff --git a/auth/src/main/res/values-hu/strings.xml b/auth/src/main/res/values-hu/strings.xml index 0c8a8d1ff..df3972b2d 100755 --- a/auth/src/main/res/values-hu/strings.xml +++ b/auth/src/main/res/values-hu/strings.xml @@ -21,7 +21,6 @@ Bejelentkezés Apple-fiókkal Bejelentkezés Microsoft-fiókkal Bejelentkezés Yahoo-fiókkal - Bejelentkezés LINE-fiókkal Következő E-mail Telefonszám diff --git a/auth/src/main/res/values-in/strings.xml b/auth/src/main/res/values-in/strings.xml index 794c4bef1..07028de5c 100755 --- a/auth/src/main/res/values-in/strings.xml +++ b/auth/src/main/res/values-in/strings.xml @@ -21,7 +21,6 @@ Login dengan Apple Login dengan Microsoft Login dengan Yahoo - Masuk dengan LINE Berikutnya Email Nomor Telepon diff --git a/auth/src/main/res/values-it/strings.xml b/auth/src/main/res/values-it/strings.xml index d3e19c1f0..d7ecea66b 100755 --- a/auth/src/main/res/values-it/strings.xml +++ b/auth/src/main/res/values-it/strings.xml @@ -21,7 +21,6 @@ Accedi con Apple Accedi con Microsoft Accedi con Yahoo - Accedi con LINE Avanti Indirizzo email Numero di telefono diff --git a/auth/src/main/res/values-iw/strings.xml b/auth/src/main/res/values-iw/strings.xml index dd916d357..4e07b2f64 100755 --- a/auth/src/main/res/values-iw/strings.xml +++ b/auth/src/main/res/values-iw/strings.xml @@ -21,7 +21,6 @@ כניסה באמצעות Apple כניסה באמצעות Microsoft כניסה באמצעות Yahoo - כניסה באמצעות LINE הבא‏ אימייל מספר טלפון diff --git a/auth/src/main/res/values-ja/strings.xml b/auth/src/main/res/values-ja/strings.xml index 196f93b37..2899bcc12 100755 --- a/auth/src/main/res/values-ja/strings.xml +++ b/auth/src/main/res/values-ja/strings.xml @@ -21,7 +21,6 @@ Apple アカウントでログイン Microsoft アカウントでログイン Yahoo アカウントでログイン - LINEでサインイン 次へ メールアドレス 電話番号 diff --git a/auth/src/main/res/values-kn/strings.xml b/auth/src/main/res/values-kn/strings.xml index fd6390028..173153c28 100755 --- a/auth/src/main/res/values-kn/strings.xml +++ b/auth/src/main/res/values-kn/strings.xml @@ -21,7 +21,6 @@ Apple ಮೂಲಕ ಸೈನ್‌ ಇನ್ ಮಾಡಿ Microsoft ಮೂಲಕ ಸೈನ್ ಇನ್ ಮಾಡಿ Yahoo ಮೂಲಕ ಸೈನ್‌ ಇನ್ ಮಾಡಿ - LINE ಮೂಲಕ ಸೈನ್‌ ಇನ್ ಮಾಡಿ ಮುಂದೆ ಇಮೇಲ್ ಫೋನ್ ಸಂಖ್ಯೆ diff --git a/auth/src/main/res/values-ko/strings.xml b/auth/src/main/res/values-ko/strings.xml index 3afc2c29c..991be45e0 100755 --- a/auth/src/main/res/values-ko/strings.xml +++ b/auth/src/main/res/values-ko/strings.xml @@ -21,7 +21,6 @@ Apple 계정으로 로그인 Microsoft 계정으로 로그인 Yahoo 계정으로 로그인 - LINE으로 로그인 다음 이메일 전화번호 diff --git a/auth/src/main/res/values-ln/strings.xml b/auth/src/main/res/values-ln/strings.xml index 7d4146a86..0a1debd79 100755 --- a/auth/src/main/res/values-ln/strings.xml +++ b/auth/src/main/res/values-ln/strings.xml @@ -21,7 +21,6 @@ Se connecter avec Apple Se connecter avec Microsoft Se connecter avec Yahoo - Se connecter avec LINE Suivant E-mail Numéro de téléphone diff --git a/auth/src/main/res/values-lt/strings.xml b/auth/src/main/res/values-lt/strings.xml index a53971ba8..a065c2549 100755 --- a/auth/src/main/res/values-lt/strings.xml +++ b/auth/src/main/res/values-lt/strings.xml @@ -21,7 +21,6 @@ Prisijungti per „Apple“ Prisijungti per „Microsoft“ Prisijungti per „Yahoo“ - Prisijungti per „LINE“ Kitas El. pašto adresas Telefono numeris diff --git a/auth/src/main/res/values-lv/strings.xml b/auth/src/main/res/values-lv/strings.xml index 83f731f41..035e86113 100755 --- a/auth/src/main/res/values-lv/strings.xml +++ b/auth/src/main/res/values-lv/strings.xml @@ -21,7 +21,6 @@ Pierakstīties ar Apple kontu Pierakstīties ar Microsoft kontu Pierakstīties ar Yahoo kontu - Pierakstīties ar LINE kontu Tālāk E-pasts Tālruņa numurs diff --git a/auth/src/main/res/values-mo/strings.xml b/auth/src/main/res/values-mo/strings.xml index 2ef15d3ca..ea728f59a 100755 --- a/auth/src/main/res/values-mo/strings.xml +++ b/auth/src/main/res/values-mo/strings.xml @@ -21,7 +21,6 @@ Conectați-vă cu Apple Conectați-vă cu Microsoft Conectați-vă cu Yahoo - Conectați-vă cu LINE Înainte Adresă de e-mail Număr de telefon diff --git a/auth/src/main/res/values-mr/strings.xml b/auth/src/main/res/values-mr/strings.xml index 8174fc057..10dbe79f1 100755 --- a/auth/src/main/res/values-mr/strings.xml +++ b/auth/src/main/res/values-mr/strings.xml @@ -21,7 +21,6 @@ Apple वरून साइन इन करा Microsoft वरून साइन इन करा Yahoo वरून साइन इन करा - LINE वरून साइन इन करा पुढील ईमेल फोन नंबर diff --git a/auth/src/main/res/values-ms/strings.xml b/auth/src/main/res/values-ms/strings.xml index 67076ebe9..e5a1d5081 100755 --- a/auth/src/main/res/values-ms/strings.xml +++ b/auth/src/main/res/values-ms/strings.xml @@ -21,7 +21,6 @@ Log masuk dengan Apple Log masuk dengan Microsoft Log masuk dengan Yahoo - Log masuk dengan LINE Seterusnya E-mel Nombor Telefon diff --git a/auth/src/main/res/values-nb/strings.xml b/auth/src/main/res/values-nb/strings.xml index 97c624f5c..6ea6e8dd4 100755 --- a/auth/src/main/res/values-nb/strings.xml +++ b/auth/src/main/res/values-nb/strings.xml @@ -21,7 +21,6 @@ Logg på med Apple-ID-en din Logg på med Microsoft-kontoen din Logg på med Yahoo-kontoen din - Logg på med LINE-kontoen din Neste E-post Telefonnummer diff --git a/auth/src/main/res/values-nl/strings.xml b/auth/src/main/res/values-nl/strings.xml index b51a63168..537b91453 100755 --- a/auth/src/main/res/values-nl/strings.xml +++ b/auth/src/main/res/values-nl/strings.xml @@ -21,7 +21,6 @@ Inloggen met Apple Inloggen met Microsoft Inloggen met Yahoo - Inloggen met LINE Volgende E-mail Telefoonnummer diff --git a/auth/src/main/res/values-no/strings.xml b/auth/src/main/res/values-no/strings.xml index 33a60952a..ceb0f9689 100755 --- a/auth/src/main/res/values-no/strings.xml +++ b/auth/src/main/res/values-no/strings.xml @@ -21,7 +21,6 @@ Logg på med Apple-ID-en din Logg på med Microsoft-kontoen din Logg på med Yahoo-kontoen din - Logg på med LINE-kontoen din Neste E-post Telefonnummer diff --git a/auth/src/main/res/values-pl/strings.xml b/auth/src/main/res/values-pl/strings.xml index 99848139c..67c632b5f 100755 --- a/auth/src/main/res/values-pl/strings.xml +++ b/auth/src/main/res/values-pl/strings.xml @@ -21,7 +21,6 @@ Zaloguj się przez Apple Zaloguj się przez Microsoft Zaloguj się przez Yahoo - Zaloguj się przez LINE Dalej Adres e-mail Numer telefonu diff --git a/auth/src/main/res/values-pt-rBR/strings.xml b/auth/src/main/res/values-pt-rBR/strings.xml index ed6d32702..c9ec92b4d 100755 --- a/auth/src/main/res/values-pt-rBR/strings.xml +++ b/auth/src/main/res/values-pt-rBR/strings.xml @@ -21,7 +21,6 @@ Fazer login com a Apple Fazer login com a Microsoft Fazer login com o Yahoo - Fazer login com o LINE Próxima E-mail Número de telefone diff --git a/auth/src/main/res/values-pt-rPT/strings.xml b/auth/src/main/res/values-pt-rPT/strings.xml index 96009f691..e23a3b6bf 100755 --- a/auth/src/main/res/values-pt-rPT/strings.xml +++ b/auth/src/main/res/values-pt-rPT/strings.xml @@ -21,7 +21,6 @@ Iniciar sessão com a Apple Iniciar sessão com a Microsoft Iniciar sessão com o Yahoo - Iniciar sessão com o LINE Seguinte Email Número de telefone diff --git a/auth/src/main/res/values-pt/strings.xml b/auth/src/main/res/values-pt/strings.xml index 832829ab6..08f2b46d5 100755 --- a/auth/src/main/res/values-pt/strings.xml +++ b/auth/src/main/res/values-pt/strings.xml @@ -21,7 +21,6 @@ Fazer login com a Apple Fazer login com a Microsoft Fazer login com o Yahoo - Fazer login com LINE Próxima E-mail Número de telefone diff --git a/auth/src/main/res/values-ro/strings.xml b/auth/src/main/res/values-ro/strings.xml index 6f95b1cfa..94ac0fd78 100755 --- a/auth/src/main/res/values-ro/strings.xml +++ b/auth/src/main/res/values-ro/strings.xml @@ -21,7 +21,6 @@ Conectați-vă cu Apple Conectați-vă cu Microsoft Conectați-vă cu Yahoo - Conectați-vă cu LINE Înainte Adresă de e-mail Număr de telefon diff --git a/auth/src/main/res/values-ru/strings.xml b/auth/src/main/res/values-ru/strings.xml index 99d77dd54..5a8dc8d8e 100755 --- a/auth/src/main/res/values-ru/strings.xml +++ b/auth/src/main/res/values-ru/strings.xml @@ -21,7 +21,6 @@ Войти через аккаунт Apple Войти через аккаунт Microsoft Войти через аккаунт Yahoo - Войти через LINE Далее Адрес электронной почты Номер телефона diff --git a/auth/src/main/res/values-sk/strings.xml b/auth/src/main/res/values-sk/strings.xml index cf37da046..6ff216f54 100755 --- a/auth/src/main/res/values-sk/strings.xml +++ b/auth/src/main/res/values-sk/strings.xml @@ -21,7 +21,6 @@ Prihlásiť sa cez Apple Prihlásiť sa cez Microsoft Prihlásiť sa cez Yahoo - Prihlásiť sa cez LINE Ďalej E-mail Telefónne číslo diff --git a/auth/src/main/res/values-sl/strings.xml b/auth/src/main/res/values-sl/strings.xml index da22f3111..cf5572ce1 100755 --- a/auth/src/main/res/values-sl/strings.xml +++ b/auth/src/main/res/values-sl/strings.xml @@ -21,7 +21,6 @@ Prijava z računom za Apple Prijava z računom za Microsoft Prijava z računom za Yahoo - Prijava z računom za LINE Naprej E-pošta Telefonska številka diff --git a/auth/src/main/res/values-sr/strings.xml b/auth/src/main/res/values-sr/strings.xml index 3db4a4289..6ee179671 100755 --- a/auth/src/main/res/values-sr/strings.xml +++ b/auth/src/main/res/values-sr/strings.xml @@ -21,7 +21,6 @@ Пријавите се преко Apple налога Пријавите се преко Microsoft налога Пријавите се преко Yahoo налога - Пријавите се преко LINE налога Даље Имејл Број телефона diff --git a/auth/src/main/res/values-sv/strings.xml b/auth/src/main/res/values-sv/strings.xml index bd4539de3..e9fd1c7ff 100755 --- a/auth/src/main/res/values-sv/strings.xml +++ b/auth/src/main/res/values-sv/strings.xml @@ -21,7 +21,6 @@ Logga in med Apple Logga in med Microsoft Logga in med Yahoo - Logga in med LINE Nästa E-post Telefonnummer diff --git a/auth/src/main/res/values-ta/strings.xml b/auth/src/main/res/values-ta/strings.xml index 0c121a7bc..c77165871 100755 --- a/auth/src/main/res/values-ta/strings.xml +++ b/auth/src/main/res/values-ta/strings.xml @@ -21,7 +21,6 @@ Apple மூலம் உள்நுழை Microsoft மூலம் உள்நுழை Yahoo மூலம் உள்நுழை - LINE மூலம் உள்நுழை அடுத்து மின்னஞ்சல் ஃபோன் எண் diff --git a/auth/src/main/res/values-th/strings.xml b/auth/src/main/res/values-th/strings.xml index f840f18f4..6d32b92c0 100755 --- a/auth/src/main/res/values-th/strings.xml +++ b/auth/src/main/res/values-th/strings.xml @@ -21,7 +21,6 @@ ลงชื่อเข้าใช้ด้วย Apple ลงชื่อเข้าใช้ด้วย Microsoft ลงชื่อเข้าใช้ด้วย Yahoo - ลงชื่อเข้าใช้ด้วย LINE ถัดไป อีเมล หมายเลขโทรศัพท์ diff --git a/auth/src/main/res/values-tl/strings.xml b/auth/src/main/res/values-tl/strings.xml index d81cce60c..b92a6f6bc 100755 --- a/auth/src/main/res/values-tl/strings.xml +++ b/auth/src/main/res/values-tl/strings.xml @@ -21,7 +21,6 @@ Mag-sign in sa Apple Mag-sign in sa Microsoft Mag-sign in sa Yahoo - Mag-sign in sa LINE Susunod Mag-email Numero ng Telepono diff --git a/auth/src/main/res/values-tr/strings.xml b/auth/src/main/res/values-tr/strings.xml index f386fc6d1..9c65fb6eb 100755 --- a/auth/src/main/res/values-tr/strings.xml +++ b/auth/src/main/res/values-tr/strings.xml @@ -21,7 +21,6 @@ Apple ile oturum aç Microsoft ile oturum aç Yahoo ile oturum aç - LINE ile oturum aç İleri E-posta Telefon Numarası diff --git a/auth/src/main/res/values-uk/strings.xml b/auth/src/main/res/values-uk/strings.xml index 860bb35d4..99030f624 100755 --- a/auth/src/main/res/values-uk/strings.xml +++ b/auth/src/main/res/values-uk/strings.xml @@ -21,7 +21,6 @@ Увійти через обліковий запис Apple Увійти через обліковий запис Microsoft Увійти через обліковий запис Yahoo - Увійти через LINE Далі Електронна адреса Номер телефону diff --git a/auth/src/main/res/values-ur/strings.xml b/auth/src/main/res/values-ur/strings.xml index 1058cb119..36ee5cedc 100755 --- a/auth/src/main/res/values-ur/strings.xml +++ b/auth/src/main/res/values-ur/strings.xml @@ -21,7 +21,6 @@ Apple کے ساتھ سائن ان کریں Microsoft کے ساتھ سائن ان کریں Yahoo کے ساتھ سائن ان کریں - LINE کے ساتھ سائن ان کریں اگلا ای میل فون نمبر diff --git a/auth/src/main/res/values-vi/strings.xml b/auth/src/main/res/values-vi/strings.xml index 05c254c98..479e11577 100755 --- a/auth/src/main/res/values-vi/strings.xml +++ b/auth/src/main/res/values-vi/strings.xml @@ -21,7 +21,6 @@ Đăng nhập bằng Apple Đăng nhập bằng Microsoft Đăng nhập bằng Yahoo - Đăng nhập bằng LINE Tiếp Email Số điện thoại diff --git a/auth/src/main/res/values-zh-rCN/strings.xml b/auth/src/main/res/values-zh-rCN/strings.xml index 6c52cd241..5601f27a5 100755 --- a/auth/src/main/res/values-zh-rCN/strings.xml +++ b/auth/src/main/res/values-zh-rCN/strings.xml @@ -21,7 +21,6 @@ 使用 Apple 帐号登录 使用 Microsoft 帐号登录 使用 Yahoo 帐号登录 - 使用 LINE 登录 继续 电子邮件地址 电话号码 diff --git a/auth/src/main/res/values-zh-rHK/strings.xml b/auth/src/main/res/values-zh-rHK/strings.xml index c42aa939a..45ea552f8 100755 --- a/auth/src/main/res/values-zh-rHK/strings.xml +++ b/auth/src/main/res/values-zh-rHK/strings.xml @@ -21,7 +21,6 @@ 使用 Apple 帳戶登入 使用 Microsoft 帳戶登入 使用 Yahoo 帳戶登入 - 使用 LINE 帳戶登入 繼續 電子郵件 電話號碼 diff --git a/auth/src/main/res/values-zh-rTW/strings.xml b/auth/src/main/res/values-zh-rTW/strings.xml index 690e0f570..9034997ad 100755 --- a/auth/src/main/res/values-zh-rTW/strings.xml +++ b/auth/src/main/res/values-zh-rTW/strings.xml @@ -21,7 +21,6 @@ 使用 Apple 帳戶登入 使用 Microsoft 帳戶登入 使用 Yahoo 帳戶登入 - 使用 LINE 登入 繼續 電子郵件 電話號碼 diff --git a/auth/src/main/res/values-zh/strings.xml b/auth/src/main/res/values-zh/strings.xml index b152f2bd2..3f726e149 100755 --- a/auth/src/main/res/values-zh/strings.xml +++ b/auth/src/main/res/values-zh/strings.xml @@ -21,7 +21,6 @@ 使用 Apple 帐号登录 使用 Microsoft 帐号登录 使用 Yahoo 帐号登录 - 使用 LINE 帐号登录 继续 电子邮件地址 电话号码 diff --git a/auth/src/main/res/values/strings.xml b/auth/src/main/res/values/strings.xml index f55f1ade3..d8d0e70e3 100644 --- a/auth/src/main/res/values/strings.xml +++ b/auth/src/main/res/values/strings.xml @@ -30,7 +30,6 @@ Sign in with Apple Sign in with Microsoft Sign in with Yahoo - Sign in with LINE Signed in as %1$s diff --git a/composeapp/src/main/java/com/firebase/composeapp/HighLevelApiDemoActivity.kt b/composeapp/src/main/java/com/firebase/composeapp/HighLevelApiDemoActivity.kt index 4a5c548f2..fc71ead4d 100644 --- a/composeapp/src/main/java/com/firebase/composeapp/HighLevelApiDemoActivity.kt +++ b/composeapp/src/main/java/com/firebase/composeapp/HighLevelApiDemoActivity.kt @@ -92,12 +92,6 @@ class HighLevelApiDemoActivity : ComponentActivity() { applicationId = "792556260059222" ) ) - provider( - AuthProvider.Line( - scopes = emptyList(), - customParameters = emptyMap() - ) - ) provider( AuthProvider.Twitter( customParameters = emptyMap() @@ -130,14 +124,14 @@ class HighLevelApiDemoActivity : ComponentActivity() { ) provider( AuthProvider.GenericOAuth( - providerName = "LinkedIn", - providerId = "oidc.linkedin", - scopes = listOf("openid", "profile", "email"), + providerName = "LINE", + providerId = "oidc.line", + scopes = emptyList(), customParameters = emptyMap(), - buttonLabel = "Sign in with LinkedIn", - buttonIcon = AuthUIAsset.Resource(R.drawable.ic_linkedin_logo_24dp), - buttonColor = null, - contentColor = Color(0xFF0072B1) + buttonLabel = "Sign in with LINE", + buttonIcon = AuthUIAsset.Resource(com.firebase.ui.auth.R.drawable.fui_ic_line_24dp), + buttonColor = Color(0xFF06C755), + contentColor = Color.White ) ) provider( diff --git a/composeapp/src/main/res/drawable/ic_linkedin_logo_24dp.xml b/composeapp/src/main/res/drawable/ic_linkedin_logo_24dp.xml deleted file mode 100644 index 047812df2..000000000 --- a/composeapp/src/main/res/drawable/ic_linkedin_logo_24dp.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - -