Google app v8.49 beta prepares Collection sharing, Lens image search history, and and Workspaces [APK Teardown]

Friday evening brought us another update to the Google app. Unlike the previous version, there are a fair number of topics to discuss from a teardown. Google is preparing a screen for viewing your image searches from Lens, Collection sharing, a few changes to the layout of settings, and there are even hints of a mystery feature named Workspaces.

Teardown

Disclaimer: Teardowns are based on evidence found inside of apks (Android's application package) and are necessarily speculative and usually based on incomplete information. It's possible that the guesses made here are wrong or inaccurate. Even when predictions are correct, there is always a chance that products could change or may be canceled. Much like rumors, nothing is certain until it's officially announced and released.

The features discussed below are probably not live yet, or may only be live for a small percentage of users. Unless stated otherwise, don't expect to see these features if you install the apk. All screenshots and images are real unless otherwise stated, and images are only altered to remove personal information.

Google Lens history

Google Lens will be adding a view for seeing images that were used for search. This will likely include both shots straight from the camera while in the Lens mode and images that are passed in to Lens for examination.

<string name="lens_history_title">History</string>
<string name="lens_manage_history">Manage History</string>
<string name="lens_overflow_menu_image_history">Image History</string>/menu/history_settings_menu.xml
<menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:aapt="http://schemas.android.com/aapt">
<item android:id="@+id/manage_history_item" android:title="@string/lens_manage_history"/>
</menu>

There's not a lot to see with this one, it's just titles for the menu command and the pages where these things appear. Nevertheless, this is a good addition to the already extensive ways we can look back on old searches.

Sharing Collections

Earlier this year, the old Saved Pages feature was retired and replaced by Collections. While this is useful for keeping a record of some of the pages, locations, and images you want to come back to, it has really just been a solo experience so far. However, Google is working to open things up a bit more.

Newly added text shows that Collections will become shareable in the future, making it possible to send the contents to others. The sharing will occur through a single link that gives people access to view the collection. From the look of it, this will probably show the current state of the contents, so you'll be able to keep adding or removing items from it without sending new links each time.

<string name="collections_share_button">Share</string>
<string name="collections_share_collection_title">Share collection</string>
<string name="collections_detail_share_settings">Share settings</string><string name="collections_dialog_private">Private</string>
<string name="collections_dialog_private_description">Only you can see this collection</string><string name="collections_dialog_share_settings_title">Share settings</string>
<string name="collections_dialog_share_confirmation_title">Share this collection</string>
<string name="collections_dialog_share_confirmation_body">You\'ll get a link to share, and anyone with that link can see your list</string>
<string name="collections_dialog_shared">Shared</string>
<string name="collections_dialog_shared_description">Anyone with the link can see this collection</string>
<string name="collections_dialog_tap_to_copy_link">Tap to copy link</string>
<string name="collections_dialog_updating">Updating...</string>
<string name="collections_dialog_continue">Continue</string>
<string name="collections_toast_could_not_change_settings">Couldn\'t change settings</string>

When the Share command is added, it will appear at the bottom of the overflow list shown above, but a separate share button may also be shown.

Minor change to autoplay settings

Autoplay settings tend to be pretty straightforward in most apps, but somehow they've been made a little more complicated than they need to be in the Google app. Most apps generally offer a dialog box or radio buttons with options to disable autoplay, enable it only on Wi-Fi networks, or turn it on everywhere. In the Google app, the same three options are available, but they've been split across two toggles.

 

Evidently, Google is going to take a run at changing this layout to the conventional approach offered above. Three new lines spell out the standard options. Yeah, it's a small thing, but it will be a bit more immediately intuitive.

<string name="autoplay_video_previews_always">Always (on Wi-Fi and mobile data)</string>
<string name="autoplay_video_previews_wifi">Only on Wi-Fi</string>
<string name="autoplay_video_previews_never">Never</string>

Workspace

There's a new icon and a title for something called Workspace. At the moment, it's not entirely clear what this refers to, but there are two fairly obvious places to consider.

<string name="workspace">Workspace</string>

The first possibility is the home screen we know and love. Google already uses 'workspace' in the names of some home screen text. It's possible the new icon will be placed on a button that leads to settings, or maybe it will give users a way to reorder their homescreens now that it's impossible to do that with gesture navigation enabled.

<string name="workspace_new_page">New home screen page</string>
<string name="workspace_scroll_format">Home screen %1$d of %2$d</string>
<string name="workspace_cling_longpress_title">Wallpapers, widgets, &amp; settings</string>
<string name="workspace_cling_longpress_description">Touch &amp; hold background to customize</string>
<string name="workspace_cling_longpress_dismiss">GOT IT</string>

The other way this could go is tied to a major new feature coming to Google Drive that's called Workspaces. If this is the case, perhaps there will be some deeper integration between Google Search and Drive that gives users a quick way to access or search the documents within a Drive Workspace.

We'll just have to keep watching for this one since it could go in other directions, as well.

Follow-up: Auto-downloading podcasts

We've already talked about an automatic downloader for podcast episodes, and one of the strings in the original discussion shows that there will be a live counter for the number of shows that have the feature enabled. It's a small detail, but there is now a new string that will show both the number of shows set to auto-download and your total number of subscriptions.

<string name="enabled_auto_downloading_description">Enabled for %1$d out of %2$d podcasts</string>

Follow-up: General settings page (v8.44)

Some update to the Google app bring very minimal changes, like the update to v8.44. We felt like it would have been a waste of our readers' time to rehash things we've already talked about, so here's the only notable point from that update.

We've already seen an upcoming Settings page that will contain frequently changed options on several updates. The latest version puts another pair of options in there, both taken from elsewhere in the app.

The first addition will be a link to another page where you can add nicknames to your contacts — basically for attaching names like "Mom" and "Dad" to your parents. The other addition will be for settings that take effect when you're effectively signed out of search, or basically when you're in incognito mode.

strings

<string name="relationships_summary_hub">Add nicknames for your contacts</string>
<string name="relationships_preference">relationships</string><string name="signed_out_search_title">Signed-out search customization</string>
<string name="signed_out_search_preference">signed_out_search</string>excerpts from /xml/general_hub.xml
<Preference android:persistent="false" android:title="@string/relationships" android:key="@string/relationships_preference" android:summary="@string/relationships_summary_hub" android:fragment="com.google.android.apps.gsa.search.core.preferences.cards.RelationshipSettingsFragment"/><Preference android:persistent="false" android:title="@string/signed_out_search_title" android:key="@string/signed_out_search_preference" android:fragment="com.google.android.apps.gsa.search.core.preferences.SignedOutPersonalizationFragment"/>

If you want to peek at this particular update, here's the link: APK Mirror - v8.44.2.21.

Download

The APK is signed by Google and upgrades your existing app. The cryptographic signature guarantees that the file is safe to install and was not tampered with in any way. Rather than wait for Google to push this download to your devices, which can take days, download and install it just like any other APK.


#Google #Android #Smartphones #OS #News @ndrdnws #ndrdnws #AndroidNews

Popular Posts:

Do more from your inbox with Gmail Add-ons

Apple is postponing new iOS features in favor of reliability and performance

Samsung is preparing improved 8K TV upscaling tech for CES 2020 lineup

Your monthly update has arrived

Libratone Q Adapt USB-C earphones review: Pricey, but for good reason