diff --git a/app-thunderbird/src/beta/AndroidManifest.xml b/app-thunderbird/src/beta/AndroidManifest.xml
deleted file mode 100644
index 29f2d48a5c1..00000000000
--- a/app-thunderbird/src/beta/AndroidManifest.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/app-thunderbird/src/beta/kotlin/net/thunderbird/android/auth/TbOAuthConfigurationFactory.kt b/app-thunderbird/src/beta/kotlin/net/thunderbird/android/auth/TbOAuthConfigurationFactory.kt
index 2d8668e308e..feda9a6cfdb 100644
--- a/app-thunderbird/src/beta/kotlin/net/thunderbird/android/auth/TbOAuthConfigurationFactory.kt
+++ b/app-thunderbird/src/beta/kotlin/net/thunderbird/android/auth/TbOAuthConfigurationFactory.kt
@@ -42,7 +42,6 @@ class TbOAuthConfigurationFactory : OAuthConfigurationFactory {
)
}
- // TODO: Update clientId and redirectUri once new client ID is available
private fun createGmailConfiguration(): Pair, OAuthConfiguration> {
return listOf(
"imap.gmail.com",
@@ -50,11 +49,11 @@ class TbOAuthConfigurationFactory : OAuthConfigurationFactory {
"smtp.gmail.com",
"smtp.googlemail.com",
) to OAuthConfiguration(
- clientId = "560629489500-rvmv3suifbrl1888pl6ppulog8krnlcp.apps.googleusercontent.com",
+ clientId = "560629489500-u95g9r3m604k2f1uqb5c7mo27coj8g9i.apps.googleusercontent.com",
scopes = listOf("https://mail.google.com/"),
authorizationEndpoint = "https://accounts.google.com/o/oauth2/v2/auth",
tokenEndpoint = "https://oauth2.googleapis.com/token",
- redirectUri = "${BuildConfig.APPLICATION_ID}.mobile:/oauth2redirect",
+ redirectUri = "${BuildConfig.APPLICATION_ID}:/oauth2redirect",
)
}