Tabby icon indicating copy to clipboard operation
Tabby copied to clipboard

A demo application for the new Android Custom Tabs support library

Results 2 Tabby issues
Sort by recently updated
recently updated
newest added

In `MainActivity`, `CustomTabActivityHelper.mayLaunchUrl` can't be called during `onCreate`: neither the client or session are created because their creation happens after `onCustomTabsServiceConnected` callback, which is called in `onStart`. The `CustomTabsSession.mayLaunchUrl` optimization...

https://github.com/hitherejoe/Tabby/blob/master/app/src/main/java/com/hitherejoe/tabby/ui/activity/MainActivity.java#L184 and https://github.com/hitherejoe/Tabby/blob/master/app/src/main/java/com/hitherejoe/tabby/ui/activity/MainActivity.java#L177 You should use the `PendingIntent.FLAG_UPDATE_CURRENT` flag. It's not really useful in your case as you always open the same Url. But if someone is using this code...