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

Typo Fixes: Fix typos and hardcoding in comments of build.gradle config file #727

Merged
merged 1 commit into from
Oct 3, 2022
Merged
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
6 changes: 3 additions & 3 deletions packages/core/template_project/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def twaManifest = [
// The duration of fade out animation in milliseconds to be played when removing splash screen.
splashScreenFadeOutDuration: <%= splashScreenFadeOutDuration %>,
generatorApp: '<%= generatorApp %>', // Application that generated the Android Project
// The fallback strategy for when Trusted Web Activity is not avilable. Possible values are
// The fallback strategy for when Trusted Web Activity is not available. Possible values are
// 'customtabs' and 'webview'.
fallbackType: '<%= fallbackType %>',
enableSiteSettingsShortcut: '<%= enableSiteSettingsShortcut %>',
Expand Down Expand Up @@ -86,7 +86,7 @@ android {
<% } %>

// The hostname is used when building the intent-filter, so the TWA is able to
// handle Intents to open https://svgomg.firebaseapp.com.
// handle Intents to open host url of the application.
resValue "string", "hostName", twaManifest.hostName

// This attribute sets the status bar color for the TWA. It can be either set here or in
Expand Down Expand Up @@ -118,7 +118,7 @@ android {
// Trusted Web Activity.
resValue "color", "backgroundColor", twaManifest.backgroundColor

// Defines a provider authority fot the Splash Screen
// Defines a provider authority for the Splash Screen
resValue "string", "providerAuthority", twaManifest.applicationId + '.fileprovider'

// The enableNotification resource is used to enable or disable the
Expand Down