could you help me with a question? Currently I’m working in a project using react native and when I try to install this app using Appium, a message is shown indicating that there is some validation and it’s not possible to install unless it is from the official stores (App Store / Play Store).
Unverified App Message - Android
I’ve been trying to skip this message running the test scripts with some ‘adb’ commands like: adb install -i "com.android.example" but I believe that’s not the best approach.
I appreciate if someone can help me with that.
Thanks all.
If you will perform following steps manually or using script on android device. It will not show this message box.
Navigate to Setting > Security.
Check the option "Unknown sources".
Tap OK on the prompt message.
Select "Trust".
Related
Currently, I'm working on Azure function created by Java. I am able to publish Java function to Azure portal and I'm able to make a GET and POST request but I'm having issue with enabling function in write mode. So, what I am supposed to do to resolve this issue?
This is expected behavior when your function app is deployed in Run From Package mode, which means it's reading the files directly from the uploaded ZIP and so there's no way to edit it.
You can turn that off by deleting the WEBSITE_RUN_FROM_PACKAGE application setting in the portal.
Note: This will clear your function app until the next time you publish if you delete the setting.
For more details, Please check here.
Hi I have developed an web application using google app engine, for google shared domain contact, Its working fine when I am running it in the localhost but when I deploy that application into google app engine it showing warning screen before user conforming for consent(as shown in the image).
I am using 2 scope http://www.google.com/m8/feeds/contacts/ and https://www.googleapis.com/auth/userinfo.email. when I try to add a user information in the google shared contact I am getting a exception message as www.google.com. How can I resolve the problem? am i need to verify my application in the oauth_app_verification. Can any one solve this?
Thank you.,
You need to go through the verification process before you launch your app. This new process came recently to protect user's data. You can start the verification by submitting this form but before it is recommended to follow steps here
So far I managed to capture the traffic of local Java programs & Android browser successfully. However, I failed to capture traffic of my Android application (using HttpsUrlConnection).
While following the steps in this guide to configure the WiFi network on the device, in the step of downloading the certificate I faced an odd behavior as Chrome raised an error and Firefox installed it without opening the expected dialog:
But when I try to download it again, it says that the certificate is already installed.
Anyway, when running my app (on a real device, Karbonn S203 API 19), there are no requests nor tunnels logged in Fiddler. I tried a lot including inspecting this thread to no avail. In other articles I read about showing tunnels only but I don't have them either. Am I missing anything?
Thanks.
EDIT: I managed to install is "correctly" (with the above screen) from Settings -> Security -> Install Certificate after copying if from PC. Still I cannot see the requests in Fiddler.
Apparently the problem occurred due to using some uncommon devices (well, at least uncommon in Europe/North America). They've probably made some configuration changes in their AOSP version. When working the same way with Nexus 5 I managed to add the ceritifcate under 'WiFi' and then captured requests successfully.
Looks like your app does not use Fiddler as a proxy. When you call openConnection do you pass a Proxy object to it? If so, how do you initialize this proxy object?
You might want to try sending some HTTP traffic through first to make sure you are using the correct proxy settings and then try with HTTPS.
I followed the instructions from this sample but it didn't work. The frontend added tasks to pull queue notification-delivery but iOS clients didn't receive any push notification. It seems that the worker didn't do its job. I don't know if the worker automatically scan the pull queue and send out the push (using Javapns) or not. And I don't know how to check if a task in a Pull queue is processed.
What I did:
Enable billing for GAE project.
Follow instructions from the sample (edit Constants, add p12 certificate).
mvn clean install from root directory.
mvn clean package from root directory.
mvn appengine:update from cloudpush-ear directory.
Make sure Javapns works with provided p12 file by writing some code in a standalone Java class, it did send push notifications to iOS clients.
When I call PushNotificationWorkerServlet by requesting from browser to /_ah/start, it throws an error saying This feature is only available to backend instances. So I tried using ThreadManager.createThreadForCurrentRequest instead of ThreadManager.createBackgroundThread. The error was gone but nothing happened.
I think GAE with Task Queue is a perfect solution for scalable mobile applications so I'll stick with it.
Any help please? Thank you.
Reference:
https://cloud.google.com/solutions/mobile/ios-push-notifications/
After running app-engine java project multiple times in eclipse, app-engine local server doesn't work. I am getting error "This webpage is not available" in Google chrome. But eclipse console says that "dev App Server is now running". But using dev_appserver.cmd works fine, it is too difficult when developing the project. Any ideas to solve this?
PS: rerunning is done after stopping the current execution of the server.
Choose 'Automatically select an unused port' in debug configuration.
Local server will start every time on different port, but it should solve your problem.
try to change the configuration by "run as" or "debug as" and check server and port no.
Also ensure that in Windows>>preference>>java>>jre a path to jdk (not jre) is selected.
Please provide more details of the problem if it is still there.