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

Fix source origin comment #470

Merged
merged 4 commits into from
May 16, 2024
Merged
Changes from 1 commit
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 @@ -56,8 +56,8 @@ public class MainActivity extends AppCompatActivity {
private CustomTabsSession mSession;
private Uri URL = Uri.parse("https://peconn.github.io/starters");

// This can be the app's package name, it has to either start with http or https.
private Uri SOURCE_ORIGIN = Uri.parse("https://my-app-origin-uri");
// This must be a valid origin, it has to either start with http or https.
SayedElabady marked this conversation as resolved.
Show resolved Hide resolved
private Uri SOURCE_ORIGIN = Uri.parse("https://sayedelabady.github.io/");
private Uri TARGET_ORIGIN = Uri.parse("https://peconn.github.io");
private boolean mValidated = false;

Expand Down
Loading