here is his uberclone https://github.com/SimCoderYoutube/UberClone
im having problem understanding this https://www.simcoder.com/forum/uber/place-autocomplete-places-api/
on his forum he answer this question but dont understand where to put the code he says.
https://www.simcoder.com/forum/uber/google-maps-blank-screen/
and here is where the google map black problem is and some one replied this "I had a similar issue. My solution was, I created a realease API key on google map - different from what I had - Then I copied the SHA for the release apk and pasted it in google console MAP api keys, and all went well. This problem is caused by release and debug SHA are not both used in maps API on the console. Look into that. Hope this helps" help me with doing this as well ?
Related
I am a relative newbie and have developed an app that - as part of its function - will use Gmail Sender to send an email to the user of the app when necessary.
I have downloaded and included activation.jar; additional.jar; and mail.jar into the project, and the app has worked as expected in debug mode. However, when I try to test a release build, there is a problem in sending emails.
I will not at this stage present details of all that I've done to try to resolve the issue. I will just say that I have come to the tentative conclusion that one or more of the jars is/are corrupted or out of date. I have therefore downloaded simple-java-mail-7.8.2.jar but can find no clear documentation regarding how to properly include it into my project. Any help on this will be greatly appreciated.
If using this latest jar doesn't resolve the problem, I will then update this post with details of all that I had previously done and the results. For now, I would like to avoid complicating the issue with information that might be irrelevant, and would first like to try this new jar to see if it works.
Thank in advance.
First of all, I know there are similar questions here at SO. Also I
want to let you know I have already found out what the problem was.
Just want to share the solution with others who is potentially looking
for the solution of the same problem... And no, it's not a duplicate
topic.
Few days ago, my NodeJS script stopped working with AWS SQS suddenly!
Access to the resource https://sqs.us-west-2.amazonaws.com/ is denied.
But what was interesting, when I tested SQS via aws-cli with appropriate profile, it worked!
I spent many hours searching and trying to find solution... Typical problem of other programmers here at StackOverflow (for example like here) is pretty obvious: wrong IAM policy or wrong credentials. But everything worked for me few days ago and not now?! It brought me crazy.
Spoiler alert! Well, at the end, the problem was really about wrong credentials. But how is it possible when nothing has been changed on our side, right?
I found similar question at AWS Developer forum - I started playing with IAM policies but no change.
Ok, so what has happened? See my answer below
Ok, so what has happened?
Around Oct 17, 2018, you can find "Feature/load shared config" in aws-sdk-js commit history. It's a version v2.337.0+. I didn't read the code but it seems that since that time (and version), the priority of getting AWS credentials has changed. Before that, it seems environment variables had bigger priority than config file. But not anymore! What does it mean?
Well, in my case, I have several profiles in .aws/credentials and my default profile IS NOT the one with full access permissions. If your default profile has AdministratorAccess policy, this problem is not relevant for you!
I use profiles in the config file for aws-cli and not for the script. In my script, I use environment variables AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY.
Do you see the problem now? Before the change of SDK, it worked, because SDK chose environment variables first. But since some logic has changed within SDK, it chose default profile from config file. And as I wrote earlier, my default profile couldn't access SQS!
So, my solution was to remove (rename) default profile from config file. And because there was no default profile anymore, SDK started to use my environment variables again.
Glory to the SDK!
After start Crafter CMS Authoring mode successfully, I create a new site as instructed at Crafter CMS Your First Website, but the results are not the same as the description of the tutorial, all pages have status "Deleted". See the screenshot here.
Please let me know what's wrong and how to solve it. Thanks.
It's difficult to know what the issue is here because there is no log file (link does not work) but I do notice on the image a couple of things:
Everything is showing a deleted status, typically if the item is NOT in the repository it does not show at all. The deleted status typically shows up on historical dashboards.
Everything is lower cased/filename rather than internal name from the file
Hieu:
Anything you can tell us like:
OS version
Java version
Steps you took / how to reproduce
Other servers running for anything else?
I believe the correct answer to this is that there is an error in the Windows binary. I tried installing on 3 different Windows machines and had the same issue as the original poster. Plus the OP stated that the Linux distribution worked for them. I hope the Crafter people will look at this and make the correction.
This is less a question and more of an answer to this issue that caused me several hours of aggravation. I did find the solution online but not in a direct or easy place.
It turns out that the problem actually had nothing to do with whether I was using test or live keys on my site.
I had deployed my code to heroku, updated my env to match the live keys and received the error listed in the title of this thread.
The solution is actually pretty simple and the problem actually exists in stripe not my code.
I had defined Subscription Plans in test, I then had to create new plans for the live version (no import ability, but that is a frustration for another day).
The problem is that you actually have to go back into your test plans, temporarily rename them, and then rename them back.
So if I have Plan-A in test and I create Plan-A in live, I then need to rename Plan-A in test to something else like Plan-A1. Then I can rename it back to Plan-A and Stripe then works properly.
Anyway, I hope this solves the issues for others because it is really annoying to try to figure out what is wrong and blaming your code is not always the case.
I am having the following issue, with Xcode 4.2, trying to create an IPA archive to distribute with TestFlight.
Everything seems fine until I build the archive.
When I want to upload this archive I get the following message:
"Invalid IPA: The keychain-access-group in the embedded.mobileprovision and your binary don't match."
What does this exactly mean?
I have looked on the net various things about this issue, but nothing drove me to a solution at this point. I also tried what I could think of, but with no success.
Can anyone point me to a solution?
Thank you in advance, for any tip.
I had this same problem. It was caused by having the wrong release code signing identity in the target's build settings.
This is usually caused by not changing the build identifier and access group in the entitlements file. Make sure you change these in the entitlements file. More information on how to do this can be found here