Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I wrote an SAPUI5 Mobile application, and it works OK on my local server (it's the app from the tutorial, showing persons list in a table).
I've then put it in a web container via Phonegap (just copied index.html and .js files), and it also runs very nice on an emulator, but it is not adding any persons this time (like there is no function associated to a button).
Should I somehow adapt the code? I've added the needed libraries, too.
It was due to the simulator. App is working perfectly on a phone device. Thanks anyway
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
(How) Is it possible to extract the sql-file from an android application on my pc? We developed an app and used it on some devices but unfortunately some of them didn't save the information on our web interface. So we need the database from three phones and typing by hand is out of the question.
Yes, depending on where it is saved you can access the .db file via the device file explorer on the right in Android Studio.
I assume it is in data/data/yourPackageName/databases
There should be .db files, but again, they could be somewhere else depending on the way you created it.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I'm a beginner in android atudio, I recently make my first app, I put in many raw resources file(txt,mp3) that is why it's size is big (~200Mo).
I want to allow user to download what he need in order to benefit my service like listen to mp3 read text.
You should carefully consider why you need this much data in your app, remove all unnecessary parts and put everything you really need into the .apk as resource.
If I find some app is downloading 200MB to my phone, I'll uninstall that immediately.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I made a simple browser app using Webview,
but Existing android Browser apps like Chrome, Microsoft Edge, Firefox.
How are these apps made?
Simply same using Webview??
Yes basically they are WebViews. And web engine it self for webView is used default one installed on device, it also can be changed in phone settings.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have an app in which i have done some work like updated database with some records. Now i want to generate its .apk file so if i send that .apk to another user he or she can continue work from where i left. Like i wrote a half article, now i want some one else to complete it so i send that .apk to him and he can install it and continue our work.
All i could find was to get apks for all applications but i want the generated apk to have all the work i done in my app so the other user can continue easily
ref: How to get the .apk file of an application programmatically
You can't send the apk to the other developer, you have to send the source code. Your best bet is to use an online repository (github for example) and share the code that way.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I am hopefully going to be embarking on producing a ios or android app that shows the x read of a till from a remote location over an internet connection. My question is wether it is possible to access a text file or xcel file, take the contents of the file and pull it to the app using android and ios? I have a way to get the x read to either a xls or txt file but need to know if I will be able to access it using a ios or android app?
Apologies for the basic explanation but I am quite new to this.
Yes, it's possible.
You will have to write a server program that runs on the PC, and communicate via network sockets.