Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Broaden allowList URLs #22

Merged
merged 1 commit into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ class QuilttConnectorWebViewClient(private val params: QuilttConnectorWebViewCli
"quiltt.app",
"quiltt.dev",
"moneydesktop.com",
"cdn.plaid.com/link/v2/stable/link.html",
"cdn.plaid.com",
)

private fun shouldRender(url: Uri): Boolean {
Expand Down
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ default_platform :android

REPO_NAME = 'quiltt/quiltt-android'.freeze
GITHUB_TOKEN = ENV['GITHUB_TOKEN']
GRADLE_FILE_PATH = '../connector/build.gradle.kts'
SDK_VERSION_FILE_PATH = "../connector/src/main/java/app/quiltt/connector/QuilttSdkVersion.kt"
GRADLE_FILE_PATH = '../connector/build.gradle.kts'.freeze
SDK_VERSION_FILE_PATH = '../connector/src/main/java/app/quiltt/connector/QuilttSdkVersion.kt'.freeze

def release(new_version)
new_branch = "release/#{new_version}"
Expand Down