"Sorry, I don't have the answer to that question." Alexa can't even answer a simple question? Try installing the unofficial Ask Google skill to your Amazon Echo or Echo Dot. Now you can ask Alexa to ask Google any kind of questions.

Alexa, Ask Google Skill for Amazon Echo Dot

Alexa, ask Google how do you know when a pineapple is ripe?

"The butt of the pineapple is where it should be most fragrant, so put your nose there… If it smells sweet, like pineapple juice, it is ripe."

The Ask Google skill is one of the best Alexa skill you can install. Now you can get Google answers from your Alexa device! Unfortunately, the skill is not available in the Skills store because it is a conflict of interest for Google since they have their own competing device. But luckily, we can manually install the skill to our device for free.

This skill was created by tartan_guru. The latest version along with release notes around the current functionality and basic fault finding can be found here:

https://github.com/tartanguru/alexa-google-search

An update to the Ask Google skill was released on January 22nd. Read about the changeshere. Need to update your skill? Read our guidehere.

Check out our newest guide, how to install Google Assistant to your Alexa device here.

UPDATE: The whole process has changed. There are new layouts and instructions. I am in the process of revamping the entire tutorial with all new screenshots. However, I suggest you install the Google Assistant skill instead. It's better, has more features, and it is now free. Check out the updated tutorial here

How-to Install Ask Google Skill to Echo/Echo Dot

1. Create a personal AWS account here using the same email address used to register your Echo device.

Create an AWS Account

2. You will need to enter a credit card even though we will be using a free plan.

AWS Payment Information Page

3. In the Support Plan page, select the Basic plan.

AWS Plan Page

4. Once your account is created, go here and sign into your account.

5. Click on the region drop-down next to your name on the top-right corner and select "US East (N. Virginia)" if you live in the US or "EU (Ireland)" if you live in the UK. These are the only two regions that support Alexa.

AWS Change Region

6. Now click on Services on the top-left corner and go toLambda under the Compute section.

AWS Lambda

7. Click on theGet Started Now button or Create function to create a Lambda function.

AWS Lambda Get Started Now

8. ClickAuthor from scratch.

9. Name the function " google ", select Create new role from template(s) for the role, name the role " lambda_basic_execution " (or select Choose an existing role and lambda_basic_execution if the role already exists), and press Create function .

10. UnderAdd triggers, selectAlexa Skills Kit and pressAdd.

11. Click on "google" to return to the configuration settings.

12. UnderFunction code,select Upload a .ZIP file for Code entry type and upload the Archive.zip file. You can download it here (click Clone or download > Download ZIP ). Unzip the downloaded file and the Archive.zip file will be located in the src folder.

You can leave the rest of the settings as default. The Runtime should be "Node.js 6.10".

13. Under Basic settings, enter "google" for the Description and change Timeout to 10 seconds.

14. This is what the completed Configuration page should look like. Press Save  on the top of the page.

You may receive an error message, "The deployment package of your Lambda function "google" is too large to enable inline code editing. However, you can still invoke your function right now." This is fine.

15. Copy the ARN code on the top-right corner. It should look something like "arn:aws:lambda:us-east-#:############:function:google". We will need this later.

16. Now create a free Amazon Developer account here.

Amazon Developer Registration

17. Under the Payments page, answerNo for both questions.

Amazon Developer Payments Page

18. Sign into your account here and go to the Alexa tab.

Sign In to Amazon Developer Console

19. Click theGet Started button under Alexa Skills Kit.

Get Started with Alexa Skills Kit

20. ClickAdd a New Skill.

Add a New Alexa Skill

21. Set the Skill Type toCustom Interaction Model, select the correct language (US, UK, and German options available), name the Name and Invocation Name field "google", and hit Next.

Alexa Skill Information

22. Copy and paste the code below into the Intent Schema box:

                  {   "intents": [     {       "intent": "SearchIntent",    "slots": [      {        "name": "search",        "type": "SEARCH"      }    ]           },     {       "intent": "AMAZON.StopIntent"     }   ] }                

Interaction Model Intent Schema

23. EnterSEARCH as the Enter Type and copy and paste the following text into the Enter Values box:

                  who is the queen why is the sky blue how old become dogs where is hamburg what is christmas when is easter what are mice what does bleach do can you eat grass is there a god are bats black whats the biggest planet can dolphins swim did giraffes go extinct do porcupines sleep whats two plus two will bees be killed could a woodchuck chuck wood could flamingos fly are oceans wet are trees big does korea have nukes should you drink milk should trucks smoke capital of new york inventor of television what time does costco close how far away is the moon how many oceans are there who are the presidents children why do stars suddenly appear where are the nearest campsites                

24. Press Add.

25. Now copy and paste the following code to the Sample Utterances box:

                  SearchIntent {search}                

Interaction Model Sample Utterances

26. PressNext.

Interaction Model Complete

27. SelectAWS Lambda ARN (Amazon Resource Name)for the Service Endpoint Type and paste your ARN code (from step 17) into the Defaultfield.

28. SelectNo for the Account Linking question and hitNext.

Configuration Account Linking

29. You will now be in the Test stage. You're done!

Alexa Skill Test Page

You will find thegoogle skill in the Alexa app under Skills > Your Skills.

Ask Google Alexa Skill for Amazon Echo Dot

To use the skill, simply call Alexa followed by the phrase "ask Google".

Example,

"Alexa, ask Google how many Grammys has Drake won?"

You will now be able to ask Alexa even more trivia questions than before! If you have any questions or comments, feel free to leave it below and we will try to answer them quickly.