Tuesday, February 14, 2017
Android Studio 2 2 Preview New UI Designer Constraint Layout
Android Studio 2 2 Preview New UI Designer Constraint Layout

Android Studio 2.2 Preview includes a portfolio of new features along the spectrum of developments, ranging from designing user interfaces to building and debugging your app in new ways. This preview includes the following new categories of features:
Design
- Layout Editor: A new user interface designer that helps you visually design the layouts in your app. Features like blueprint mode and the new properties panel allow you to quickly edit layouts and widgets faster.
- Constraint Layout: A new powerful and flexible Android layout that allows you to express complex UIs without nesting multiple layouts.
- Layout Inspector: Debug a snapshot of your app layout running on the Android Emulator or device. Inspect the view hierarchy and corresponding attributes.
Develop
- Firebase Plugin: Explore and integrate the suite of services offered by Firebase inside of Android Studio. Adding services like Analytics, Authentication, Notifications, and AdMob are just a few clicks away.
- Enhanced Code Analysis: Android Studio checks the quality of your Android app code. In addition to 260 Android lint and code inspections, this release includes new code quality checks for Java 8 language usage and a new inspection infrastructure for more cross-file analysis.
- Samples Browser: Referencing Android sample code is now even easier. Within the code editor window, find occurrences of your app code snippets in Google Android sample code to help jump start your app development.
- Improved C++ Support: Android Studio 2.2 improves C++ development with the ability to edit, build, and debug pre-existing Android projects that use ndk-build or CMake rather than Gradle. Additionally, the existing lldb C++ debugger is now even better with project type auto-detection and a Java language aware C++ mode that lets you use a single debugger process to inspect both Java language and C++ runtimes.
- IntelliJ 2016.1: Android Studio 2.2 includes all the latest updates from the underlying JetBrains product platforms IntelliJ.
Build
- Jack Compiler Improvements: For those using the new Jack compiler, Android Studio 2.2 adds support for annotation processing, as well as incremental builds for reduced build times.
- Merged Manifest Viewer: Diagnose how your AndroidManifest.xml merges with your app dependences across your project build variants.
Test
- Espresso Test Recorder: Record Espresso UI tests simply by using your app as a normal user. As you click through your app UI, reusable and editable test code is then generated for you. You can run the generated tests locally, in your Continuous Integration environment, or in Firebase Test lab.
- APK Analyzer: Drill into your APK to help you reduce your APK size, debug 64K method limit issues, view contents of Dex files and more.
Deeper Dive into the New Features
Design- Layout Editor: Android Studio 2.2 features a new user interface designer. There are many enhancements but some of the highlights include:
- Drag-and-drop widgets from the palette to the design surface or the component tree view of your app.
- Design surface has a blueprint mode to inspect the spacing and arrangement of your layout.
- Properties panel now shows a curated set of properties for quick widget edits with a full sheet of advanced properties one click away.
- UI builder can edit menu and system preference files.
![]() |
| The new Layout Editor in Android Studio 2.2 Preview |
![]() |
| Edit Menus in the new Layout Editor |
- Constraint Layout: This new layout is a flexible layout manager for your app that allows you to create dynamic user interfaces without nesting multiple layouts. It is distributed as a support library that is tightly coupled with Android Studio and backwards compatible to API Level 9.
To help you get started, the built-in templates in the New Project Wizard in Android Studio 2.2 Preview now generate a Constraint Layout. Alternately, you can right click on any layout in the new Layout Editor and select the Convert to ConstraintLayout option.
This is an early preview of the UI designer and Constraint Layout, and we will rapidly add enchantments in upcoming releases. Learn more on the Android Studio tools site.
![]() |
Constraint Layout |
![]() |
Start Layout Inspector |
- Layout Inspector: For new and existing layouts, many times you may want to debug your app UI to determine if your layout is rendering as expected. With the new Layout Inspector, you can drill into the view hierarchy of your app and analyze the attributes of each component of UI on the screen.
![]() |
| Layout Inspector |
- Firebase Plugin: Firebase is the new suite of developers services that can help you develop high-quality apps, grow your user base, and earn more money. Inside of Android Studio, you can add Firebase to a new or existing Android app with the new Assistant window. To access the Firebase features click on the Tools menu and then select Firebase. You will want to first setup the brand new Firebase Analytics as the foundation as you explore other Firebase services like Firebase Cloud Messaging or Firease Crash Reporting to add your application. Learn more about the Firebase integration inside Android Studio here.
![]() |
Firebase Plugin for Android Studio |
- Code Sample Browser: In addition to importing Android Samples, the Code Sample Browser is a menu option inside Android Studio 2.2 Preview that allows you to find high-quality, Google-provided Android code samples based on the currently highlighted symbol in your project. To use the feature, highlight a Variables, Types and Methods in your code then Right Click to show a context menu for Find Sample Code. The results are displayed in a bottom output box.
![]() |
| Code Sample Browser |
- CMake and NDK-Build: For those of you using the Android NDK, Android Studio now supports building CMake and NDK-Build Android app projects by pointing Gradle at your existing build files. Once youve added your cmake or ndk-build project to Gradle, Android Studio will automatically open your relevant Android code files for editing and debugging in Studio.
For CMake users, just add the path to your CMList.txt file in the
externalNativeBuild section of your Gradle file:![]() |
| CMake Build in Android Studio |
For NDK-Build Users, just add the path to your *.mk file in the section of your Gradle file:
![]() |
| NDK-Build in Android Studio |
- Improved Jack Tools: The new Jack Toolchain compiles your Java language source into Android dex bytecode. The Jack compiler allows some Java 8 language features, like lambdas, to be used on all versions of Android. This release adds incremental build and full support for annotation processing, so you can explore using Java 8 language features in your existing projects.
![]() |
Enable Jack Incremental Compile Option |
![]() |
| Enable Jack Annotation Processing |
- Merged Manifest Viewer: Figuring out how your AndroidManifest merges with your project dependencies based on build types, flavors and variants is now easier with Android Studio. Navigate to your AndroidManifest.xml and click on the new Merged Manifest bottom tab. Explore how each node of your AndroidManifest resolves with various project dependencies.
![]() |
| Merged Manifest Viewer |
- Espresso Test Recorder: Sometimes writing UI tests can be tedious. With the Record Espresso UI tests feature, creating tests is now as easy as just using your app. Android Studio will capture all your UI interactions and convert them into a fully reusable Espresso Test that you can run locally or even on Firebase Test lab. To use the recorder, go to the Run menu and select Record Espresso Test.
![]() |
| Espresso Test Recorder |
- APK Analyzer: The new APK Analyzer helps you understand the contents and the sizes of different components in your APK. You can also use it to avoid 64K referenced method limit issues with your Dex files, diagnose ProGuard configuration issues, view merged AndroidManifest.xml file, and inspect the compiled resources file (resources.arsc). This can help you reduce your APK size and ensure your APK contains exactly the things you expect.
![]() |
| APK Analyzer |
- Java-aware C++ Debugger: When debugging C++ code on targets running N and above, you can now use a single, Java language aware lldb instance. This debugger continues to support great lldb features like fast steps and memory watchpoints while also allowing you to stop on Java language breakpoints and view your Java language memory contents.
- Auto Debugger Selection: Android Studio apps can now use debugger type Auto. This will automatically enable the appropriate debugger -- the Java language aware C++ debugger if enabled and otherwise the hybrid debugger for C++ projects. Projects exclusively using the Java language will continue to use the Java language debugger.
![]() |
| Enable Auto Debugger for C++ |
Whats Next
DownloadIf you are using a previous version of Android Studio, you can check for updates on the Canary channel from the navigation menu (Help ? Check for Update [Windows/Linux] , Android Studio ? Check for Updates [OS X]). This update will download a new version, and not patch your existing copy of Android Studio. You can also download Android Studio 2.2 Preview from canary release site.
For the Android Studio 2.2 Preview, we recommend you run a stable version alongside the new canary. Check out the tools site on how to run two versions at the same time.
We appreciate any feedback on things you like, issues or features you would like to see. Connect with us -- the Android Studio development team -- on our Google+ page or on Twitter.
Available link for download
Sunday, January 15, 2017
Kyocera Hydro Shore is a new waterproof Android phone for AT T GoPhone
Kyocera Hydro Shore is a new waterproof Android phone for AT T GoPhone
Kyocera has become known for offering waterproof Android smartphones, and today it revealed its latest hydrophobic handset.
The Kyocera Hydro Shore will be available starting tomorrow July 16. Itll be available for AT&Ts GoPhone prepaid service, but youll only be able to buy the Hydro Shore from Walmart. Pricing for the Hydro Shore will be $79.99.
from PhoneDog.com - Latest videos, reviews, articles, news and posts http://ift.tt/29Nq6DX
via IFTTT
Available link for download
Tuesday, January 10, 2017
A new method to measure touch and audio latency
A new method to measure touch and audio latency
Posted by Mark Koudritsky, software engineer
There is a new addition in the arsenal of instruments used by Android and ChromeOS teams in the battle to measure and minimize touch and audio latency: the WALT Latency Timer.

When you use a mobile device, you expect it to respond instantly to your touch or voice: the more immediate the response, the more you feel directly connected to the device. Over the past few years, we have been trying to measure, understand, and reduce latency in our Chromebook and Android products.
Before we can reduce latency, we must first understand where it comes from. In the case of tapping a touchscreen, the time for a response includes the touch-sensing hardware and driver, the application, and the display and graphics output. For a voice command, there is time spent in sampling input audio, the application, and in audio output. Sometimes we have a mixture of these (for example, a piano app would include touch input and audio output).
Most previous work to study latency has focused on measuring a single round-trip latency number. For example, to measure audio latency, an app would measure time from app to speaker/mic and back to the app using the Dr. Rick ORang loopback audio dongle together with an appropriate app such as the Dr Rick ORang Loopback app or Superpowered Mobile Audio Latency Test App. Similarly, the TouchBot uses a fast camera to measure the round-trip delay from physical touch until a change on the screen is visible. While valuable, the problem with such a setup is that its very difficult to break down the latency into input vs output components.
An important innovation in WALT (a descendant of QuickStep) is that it synchronizes an external hardware clock with the Android device or Chromebook to within a millisecond. This allows it to measure input and output latencies separately as opposed to measuring a round-trip latency.
WALT is simple. The parts cost less than $50 and with some basic hobby electronics skills, you can build it yourself.
Weve been using WALT within Google for Nexus and Chromebook development. Were now opening this tool to app developers and anyone who wants to precisely measure real-world latencies. We hope that having readily accessible tools will help the industry as a whole improve and make all our devices more responsive to touch and voice.
Available link for download
Saturday, January 7, 2017
Grow your business on Google Play with help from the new Playbook for Developers app
Grow your business on Google Play with help from the new Playbook for Developers app
Posted by Dom Elliott, the Google Play team
| Today, the Playbook for Developers mobile app is now generally available for Android devices. The app helps you stay up-to-date with the features and best practices to grow your business on Google Play. Thanks to all our beta testers over the last six weeks whose feedback helped us tweak and refine the app in preparation for launch. Heres how you read and watch content in the Playbook for Developers app:
| ![]() |

The app supports Android 5.0 and above. If youre on an older device, check out our ebook, The Secrets to App Success on Google Play. We will be adding and updating content in the app to help you stay up-to-date and grow your business. Get the Playbook for Developers app today and then give us your feedback. The app is also available in the following languages: Bahasa Indonesia, Deutsch, español (Latinoamérica), le français, português do Brasil, ti?ng Vi?t, ??????? ?????, ???, ?? (??), ?? (??), and ???.
This is the second app weve released for Google Play developers. Get the Google Play Developer Console app to review your apps performance statistics and financial data, get notified about your apps status and publishing changes, and read and reply to user reviews on the go.

Available link for download
Tuesday, December 20, 2016
Googles Visual Translation Supports 20 New Languages
Googles Visual Translation Supports 20 New Languages
Google bought Word Lens last year and brought a very useful feature to Google Translate: real-time visual translation. Use a phone or a tablet running Android or iOS, point the camera at a sign or text in a foreign language and Google will translate the text almost instantly, while preserving all the other details. Its like using a magic camera that translates text and lets you read street signs, restaurant menus, user manuals, newspaper articles even if theyre written in foreign languages.
Visual translation now supports 20 additional languages. "You can now translate to and from English and Bulgarian, Catalan, Croatian, Czech, Danish, Dutch, Filipino, Finnish, Hungarian, Indonesian, Lithuanian, Norwegian, Polish, Romanian, Slovak, Swedish, Turkish and Ukrainian. You can also do one-way translations from English to Hindi and Thai." Back in January, the feature was launched with only 7 supported languages: English, French, German, Italian, Portuguese, Russian and Spanish.

This feature requires to pick the right languages before tapping the camera button and one of the languages must be English. Youll probably be prompted to download a small language pack, since you can use Word Lens offline.
Google Research Blog has more information about Word Lens. After finding the text regions in the picture, Google recognizes the letters using a convolutional neural network. "Letters out in the real world are marred by reflections, dirt, smudges, and all kinds of weirdness. So we built our letter generator to create all kinds of fake dirt to convincingly mimic the noisiness of the real worldfake reflections, fake smudges, fake weirdness all around." After recognizing the letters, Google translates the text taking into account that text recognition might include mistakes, then it "renders the translation on top of the original words in the same style as the original". Google actually erases the original text using the colors surrounding the text and draws the translation using the initial foreground color. Its quite clever.
Heres a funny demo:
Available link for download
Thursday, December 15, 2016
Blackberry Easy Flasher New Edition 2012 2016 Download Free
Blackberry Easy Flasher New Edition 2012 2016 Download Free

Download the file you need and then use the Write flash button to load them on your phone. Now you can download latest setup of Blackberry Easy Flasher from below download links. We are always trying to share free and official site download links, so you can manage it easily. Official servers allowing visitors to download free apps, and they are releasing new updates for old apps. If you are facing difficulties during downloading just contact us via commenting, we will update download links very soon.
Download links
Blackberry Easy Flasher Download
Available link for download
A New Google Logo
A New Google Logo
Googles homepage has a clever animation that announces a new Google logo. "These days, people interact with Google products across many different platforms, apps and devices sometimes all in a single day. (...) Today were introducing a new logo and identity family that reflects this reality and shows you when the Google magic is working for you, even on the tiniest screens," informs Google.


Googles app launcher already has new icons for Google Search, Google Maps, Google Translate, Google News and Google+:
The new icons are better suited for small screens and manage to convey the Google identity using colors and playful cues. Googles logo hasnt changed a lot since 1998: its still simple, colorful, playful and unintimidating.
{ Thanks, Gopinath. }
Available link for download
Saturday, November 26, 2016
MasterBox Tool Latest New Setup V3 2 848 Download Free
MasterBox Tool Latest New Setup V3 2 848 Download Free

- Download the latest and full setup of your flashing tool or box
- Then install it on your PC by run setup
- Download the latest flash files of your mobile which you want to flash
- Take a backup of your data before flashing
- Now connect your mobile with box via USB data cable
Downloading Links
MasterBox Setup Download
Available link for download
Thursday, November 3, 2016
Googles diverse women emoji accepted by Unicode will add more than 100 new emoji
Googles diverse women emoji accepted by Unicode will add more than 100 new emoji
Remember back in May when Google proposed new emoji to improve the diversification of the characters? Well today most of them have been approved by the Unicode Emoji Subcommittee, which is in charge of the development of emoji.
from PhoneDog.com - Latest videos, reviews, articles, news and posts http://ift.tt/29HIsF8
via IFTTT
Available link for download
Saturday, October 8, 2016
Google’s new Play Store algorithm to halve size of updates
Google’s new Play Store algorithm to halve size of updates
The amount of data required for updating Google Play apps can really send your mobile bill through the roof, especially if you arent using Wi-Fi. Fortunately, Google has heard your concerns, and rolled out a new Delta algorithm, bsdiff, which reduces the app update size and lets you save on the data required for updating them.
Googles new algorithm does this by further compressing the size of patches for apps and games. According to a blog post by Anthony Morris, SWE Google Play, for about 98 percent of app updates from the Play Store, only deltas to APK files are downloaded and merged with the existing files to reduce the size of the updates. Now, Googles new algorithm will further reduce the patches by up to 50 percent. As he explains in the post,
"For approximately 98 percent of app updates from the Play Store, only changes (deltas) to APK files are downloaded and merged with the existing files, reducing the size of updates. We recently rolled out a delta algorithm, bsdiff, that further reduces patches by up to 50 percent or more compared to the previous algorithm. Bsdiff is specifically targeted to produce more efficient deltas of native libraries by taking advantage of the specific ways in which compiled native code changes between versions. To be most effective, native libraries should be stored uncompressed (compression interferes with delta algorithms)."
Google has also applied the new algorithm to APK Expansion Files to allow users to include additional large files of up to 2GB in size with their apps. This means that the download size of your initial installs will now be lower by about 12 percent, and your updates by approximately 65 percent.
"APK Expansion Files allow you to include additional large files up to 2GB in size (e.g. high resolution graphics or media files) with your app, which is especially popular with games. We have recently expanded our delta and compression algorithms to apply to these APK Expansion Files in addition to APKs, reducing the download size of initial installs by 12 percent, and updates by 65 percent on average."
Google really cares about you and doesnt want you to pay unnecessarily high data charges when you update your favorite apps. So it has also updated the Play Store descriptions to include the actual download size of the apps instead of the size of their APKs. So instead of seeing just the app size earlier on Google Play and remaining in the dark about how much data and storage the update would actually consume, youll now get to see the precise size of the app you want to install or update. Cool, huh?
If the changes made to Google Play arent reflecting on your screen yet, dont panic because, as always, they are being rolled out to all users and should reach you sometime in the coming weeks.
Let us know in the comments below if you think Google Plays new algorithm will help reduce your data usage!
from Android Authority http://ift.tt/2akMHpT
via IFTTT
Available link for download
Saturday, October 1, 2016
Koushs new screen sharing app Inkwire is available in beta on the Play Store
Koushs new screen sharing app Inkwire is available in beta on the Play Store
Koushik Dutta, a.k.a Koush, is one of Androids most popular developers. From the custom recovery ClockworkMod to ROM Manager, to Allcast, to Vysor, his apps are downloaded almost religiously amongst power users, developers, and tinkerers. In the last few hours, hes made a new app available in beta, named Inkwire.
Based on Koushs previous app, Vysor, which mirrors your Android devices screen on a computer, Inkwire goes one step further and shares the screen to another Android device, letting someone else help with a problem or issue, which could be especially useful for tech support workers or, as Koush says, independent app developers.
Read MoreKoushs new screen-sharing app Inkwire is available in beta on the Play Store was written by the awesome team at Android Police.
from Android Police Android News, Apps, Games, Phones, Tablets http://ift.tt/2a2mZ7j
via IFTTT
Available link for download
Thursday, September 22, 2016
An updated app guide and new video tips to help you find success on Google Play
An updated app guide and new video tips to help you find success on Google Play
Posted by Dom Elliott, The Google Play Apps & Games team
Last year, we introduced our first playbook for developers, The Secrets to App Success on Google Play, to help you grow your app or game business, which has been downloaded more than 200,000 times.. Many new features have since been announced on the platform from Store Listing Experiments and beta testing improvements to App Invites and Smart Lock for Passwords.
Get the second edition of The Secrets to App Success on Google Play
Hot off the press, you can now download the second edition to learn about all the new tools and best practices for improving the quality of your app, growing a valuable audience, increasing engagement and retention, and earning more revenue.


Get the book on Google Play in English now or you can sign-up to be notified when the booklet is released in the following languages: Bahasa Indonesia, Deutsch, español (Latinoamérica), le français, português do Brasil, ti?ng Vi?t, ??????? ?????, ???, ???, ?? (??), ?? (??), ???. Based on your feedback, the guide was updated to work seamlessly in the Google Play Books app. If you prefer, you can also download a PDF version from the Android Developers website.
New videos with tips to find success on Google Play
To accompany the guide, watch the first two episodes in a new ten-part video series of actionable tips you can start using today to achieve your business objectives. Subscribe to the Android Developers channel on YouTube and follow +Android Developers to watch the new videos as theyre released weekly.
on the Android Developer YouTube channel.
Let us know your feedback
Once youve checked out the guide and the videos, wed again love to hear your feedback so we can continue to improve our developer support, please let us know what you think.
Available link for download
Wednesday, September 21, 2016
Explore the new Google Play Developer Policy Center
Explore the new Google Play Developer Policy Center
Posted by Atul Kumar, Google Play Policy
More than 1 billion Android users come to Google Play every month to discover their favorite apps and games, enabling developers to reach a vast global audience and build successful businesses on the platform. To maintain a positive experience for both users and developers, the Google Play Developer Program Policies play a central role in helping make Google Play an open, safe and enjoyable ecosystem by educating the community and defining appropriate content and activities in the store.
We constantly listen to our developers and users to maintain fair and defined policies and look for ways to improve how we communicate those policies to help developers avoid accidental pitfalls. As part of that effort, weve redesigned our Developer Program Policy Center to communicate our policies with greater transparency and clarity. This redesign includes:
- Thematic organization of policies, so it is easier for developers to find relevant policies and understand the broad principles behind them
- Visual examples and detailed guidelines for the most common violations based on developer feedback
- Expanded information on our policy enforcement to help resolve violations
- A visual refresh embracing Material Design to help developers more intuitively find the information they are looking for on mobile or desktop

From making it easier to self-correct minor violations in minutes using the app publishing status feature to improving our policy communication, the new policy center is part of our ongoing effort to improve the developer experience. We invite you to explore the new policy center and and share your feedback.
Available link for download
Friday, September 16, 2016
Inkwire is a new app that could improve the remote support experience
Inkwire is a new app that could improve the remote support experience
Update, July 22: Duttas Inkwire is now available as a beta. To try it out you will need to join a Google Plus community and then download it from the Play Store. You can get started right here.
Original post, July 15: You may recognize the name Koushik Dutta hes the developer behind Vysor, an app that lets you control your Android smartphone on a desktop, as well as other popular Android apps. And hes back again, this time with an app called Inkwire.
Vysor and Inkwire do similar tasks, but are different in significant ways. Before Vysor, apps that let you remotely access and control your smartphone required rooting, or the frame rates simply dropped to a point where even simple tasks like typing became torture.
Vysor, however, was one of the first to offer an intuitive and responsive experience. All you had to do was launch the Vysor extension on Chrome, connect and turn on USB debugging on your device, and you could control your phone with your mouse and keyboard. Simple as that.
Inkwire is set to give you the same easy method of remote access, except you dont need a desktop or ADB. According to Koush, Inkwire is "just plain old Android to Android screen sharing, without the cords." The app generates a code that is shared with another user to grant them access to your screen.
Since ADB is not required, you wont be able to control the remote users smartphone directly; however, Inkwire will let users draw over the shared screens to show where to touch. On top of that, Inkwire supports voice chat, which will no doubt facilitate communication between users.
If Inkwire is able to provide a smooth and intuitive but also secure experience, it may shift the paradigm of troubleshooting your Android device. No longer will you have to walk around your neighborhood, looking for a phone repair shop, as many things could be done virtually.
Read more: Best remote access apps for Android
Although we dont know the official release date for the app just yet, Koush promises that the beta link is coming soon to this community page for Inkwire.
Do you think Inkwire would be useful? Let us know in the comments below!
from Android Authority http://ift.tt/29MV1Qx
via IFTTT
Available link for download
Tuesday, September 13, 2016
Introducing a New Course on Developing Android Apps for Auto
Introducing a New Course on Developing Android Apps for Auto
Posted by Wayne Piekarski, Developer Advocate
Android Auto brings the Android platform to the car in a way thats optimized for the driving experience, allowing the user to keep their hands on the wheel, and their eyes on the road. To learn how to extend your existing media and messaging apps to work within a car, we collaborated with Udacity to introduce a new course on Ubiquitous Computing with Android Auto.
Designed by Developer Advocates from Google, the course shows you how to take advantage of your existing Android knowledge to work on this new platform. The best part is that Android Auto is based on extensions to the regular Android framework, so you dont need to rewrite your existing apps to support it. Youll learn how to implement messaging apps, by using Notification extensions. Youll also learn how audio players just work on Android Auto when you use the Android media APIs. In both cases, we work through some simple Android samples, and then show what changes are needed to extend them for Android Auto. Finally, we show a complete music playing sample, and how it works across other platforms like Android Wear.
If you have an interest in Android-based messaging or media apps, then you need to learn about Android Auto. Users want to be able to take their experience to other places, such as their cars, and not just on their phones. Having Auto support will allow you to differentiate your app, and give users another reason to try it.
This class is part of our larger series on Ubiquitous Computing across Google platforms, such as Android Wear, Android Auto, Android TV, and Google Cast. Designed as short, standalone courses, you can take any course on its own, or take them all! The Android Auto platform is a great opportunity to add functionality that will distinguish your app from others. This Udacity course will get you up to speed quickly with everything you need to get started.
Get started now and try it out at no cost, your users are waiting!

Available link for download
Wednesday, September 7, 2016
Allo and Duo Googles New Messaging Apps
Allo and Duo Googles New Messaging Apps
Hangouts was supposed to be Googles unified messaging solution, but things didnt go as planned: Hangouts was buggy, lacked features and many people hated it. After releasing a separate app for SMS (Messenger), Google will soon launch 2 other apps: Allo for group chat and Duo for video calling.
Both Allo and Duo use your phone number, much like WhatsApp, so you can chat or talk with anyone from your phonebook. Allo includes a special version of the Smart Reply feature from Google Inbox and it suggests replies for both text messages and photos. Smart Reply learns over time and adapts to your style, suggesting replies you are likely to send.

Theres also a Google Assistant you can add to a conversation to answer quick questions, show search results and even perform actions like reserving a table at a restaurant. "The Google assistant in Allo understands your world, so you can ask for things like your agenda for the day, details of your flight and hotel, or photos from your last trip. And since it understands natural language patterns, you can just chat like yourself and itll understand what youre saying," informs Google.
Allo lets you share photos, add text to photos, add emojis and stickers. Theres also a Whisper Shout feature that lets you resize the text before sending it.

Allo has an incognito mode for private conversations. The incognito mode features end-to-end encryption and discreet notifications. Much like in Chrome, youll need to manually start an incognito conversation and some features arent available in incognito mode.
Duo is a simplified one-to-one video calling app that uses your phone number, works well on slow Internet connections (it uses WebRTC) and has a Knock Knock feature that shows a live preview of the caller before you answer. Hopefully, users will be able to block those who abuse this feature.

"Duo calls are in crisp HD video (up to 720p) and audio. Weve optimized Duo to work well even on spotty networks, so if bandwidth is limited it gracefully adjusts quality so youre still able to connect. We also seamlessly transition calls between cellular and Wi-Fi, so you dont need to worry about what network youre on. Finally, we built Duo with privacy and security in mind and all calls on Duo are end-to-end encrypted," explains Google.
Allo and Duo will launch this summer and will be available for Android and iOS. For now, Hangouts will continue to exist, since Allo and Duo lack many of the features from Hangouts.
Google doesnt have a good track record when it comes to messaging services, so its hard to tell whether the new apps will be successful. It looks like Allo and Duo will be simple, fast and more focused.
{ via Google Blog }
Available link for download
Monday, August 22, 2016
Googles New Colorful Favicon
Googles New Colorful Favicon
Google has a new logo, but it also has a new favicon. Its now a capital G that uses the four Google colors: blue, red, yellow and green.
Heres a screenshot that shows the old favicon launched in 2012 and the new one:
Available link for download















