Switched default Link to https:// protocol
This commit is contained in:
parent
bc65183e80
commit
c3651b3b9a
1 changed files with 4 additions and 2 deletions
|
@ -81,9 +81,11 @@ import java.util.List;
|
||||||
|
|
||||||
public class GameActivity extends BaseActivity implements NavigationView.OnNavigationItemSelectedListener, IGameSolvedListener ,ITimerListener, IHintDialogFragmentListener, IResetDialogFragmentListener, IShareDialogFragmentListener {
|
public class GameActivity extends BaseActivity implements NavigationView.OnNavigationItemSelectedListener, IGameSolvedListener ,ITimerListener, IHintDialogFragmentListener, IResetDialogFragmentListener, IShareDialogFragmentListener {
|
||||||
|
|
||||||
public static final List<Uri> validUris = Arrays.asList(Uri.parse("sudoku://"),
|
public static final List<Uri> validUris = Arrays.asList(
|
||||||
Uri.parse("https://sudoku.secuso.org"),
|
Uri.parse("https://sudoku.secuso.org"),
|
||||||
Uri.parse("http://sudoku.secuso.org"));
|
Uri.parse("http://sudoku.secuso.org"),
|
||||||
|
Uri.parse("sudoku://")
|
||||||
|
);
|
||||||
|
|
||||||
GameController gameController;
|
GameController gameController;
|
||||||
SudokuFieldLayout layout;
|
SudokuFieldLayout layout;
|
||||||
|
|
Loading…
Reference in a new issue