Questions tagged [mobile-application]

Refers to a software application that is designed to run on a hand-held device, such as a smartphone, pda, or tablet.

Refers to a software application that is designed to run on a hand-held device, such as a smartphone, pda, or tablet.

1815 questions
0
votes
1 answer

Mobile apps: is it a good practice to use a constant to distinguish the Free/Pro version?

I have two apps which do essentially the same, with small differences (different logo, ads hidden in the Pro, different Facebook app id for the login flow, etc.) Currently, I use a public const bool isProVersion = false; Which I toggle before…
the_nuts
  • 5,634
  • 1
  • 36
  • 68
0
votes
1 answer

TypeOf(RegisterPage) showing an error

I am developing a windows 8.1 app and this is my first time doing this. I have coded in c# before but I'm still in the learning stages due to being on and off on learning. I've just started so I only have two pages : MainPage.xaml and…
TeeHP
  • 45
  • 1
  • 1
  • 7
0
votes
1 answer

Share Data in android app for all applications

How to Share Data(txt or image ....) in android for all applications for example Share Data(txt or image ....) in android for all applications the code not do on facebook Intent sendIntent = new…
Majd
  • 46
  • 7
0
votes
1 answer

Having trouble with Corona Table VIew

I was watching a video tutorial about Corona Table View, typed the same codes as in the tutorial but failed to display the data in the rows, but it displayed ni the tutorial. can someone check my code if I typed something wrong? tableView here's the…
0
votes
1 answer

AWS EC2 Linux take iOS client command to execute python script to query database in RDS

I currently have an EC2 Amazon linux instance running, I have some python scripts I have created and stored in my cgi-bin. I am having my iOS client (iPhone app) make an http request to execute the python scripts located in the cgi-bin directory of…
0
votes
1 answer

Best solution of using magento API

I need to create a native android and ios app. I've done some tests on SOAP API but that was very slow (I don't know why!) I've tried REST API as well but the methods are very limited and I don't know how should I handle "add to basket" and…
Hamid Parchami
  • 7,319
  • 2
  • 18
  • 22
0
votes
4 answers

Appium Android Automation

This may be simple question for the experts. I am a beginner in appium and all these days i have been trying to make my test script for printing a page title in my script. Here is the part of My code below: i am unable to print the page title and…
0
votes
3 answers

Display a view in the mobile app, from the website (knowing if user comes from application)

Let's see if I can explain this and make sense at the same time... I've a website and a mobile app for that website. In some cases I'll use the view on the website in the app. I wont redirect the user to the website, but the website view will…
teninchhero
  • 153
  • 16
0
votes
1 answer

User Connection

My main question is how do developers allow users to connect to each other in applications? For instance when using the Omegle application a user is allowed to press a button and the application connects them automatically to another user. I guess…
0
votes
2 answers

Is there a way to get to take up the entire width of the screen using Polymer Starter Kit?

I want my to span the entire width of the page like this: However, the Polymer Starter Kit has the taking up the left margin in the upper left corner like this: Question How do I get my Polymer Starter Kit to look…
Let Me Tink About It
  • 15,156
  • 21
  • 98
  • 207
0
votes
1 answer

App install via Android Studio starts at boot but not if installed as an .apk

I've got an app with the following in the manifest
Gruntcakes
  • 37,738
  • 44
  • 184
  • 378
0
votes
1 answer

How to tell where my Deep Links are being shared?

Deep linking's picked up popularity recently and I'm hoping to understand them a lot better sooner than later. I've configured my app for deep linking and can open it from a deep link (testing on a local environment). However, I can't know any…
virgil9306
  • 15
  • 4
0
votes
1 answer

error while programming for a button in initial level

I am new in android programming, having error in the given code which are: Multiple markers at this line -Button1 cannot be resolved to a variable -Syntax error on token "@", class expected -id cannot be resolved to a variable -Line…
0
votes
5 answers

How to connect android device with appium using windows machine?

Could you please provide the step by step procedure to connect android device with appium in windows machine? What are the the things we need to be installed to run android in the appium? Please give clear details.Because I am new to this appium…
user5167985
0
votes
1 answer

How to make Server and client sockets work on public ip on mobile?

I am working on an application that uses socket to transfer data from one device to other without the server interference and it is important that no one can get a copy of the data only the sender and the receiver. The server will be only for…