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 2 years ago.
Improve this question
I want to make custom os for a smartglass but I have no experience AOSP where should I start from and what are the things that I should take into consideration.
As for me, first you need to think about the DevKit, which is supported by AOSP out of the box. For example, in my projects I use HiKey960. The link below describes the basic steps of getting AOSP sources, building them, and target flashing: https://source.android.com/setup/build/devices#960userspace
Once you have buildable and runable AOSP, you can try adding your own functionality: application, services, native daemons, HAL implementation, and so on.
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 5 years ago.
Improve this question
as title says, im trying to figure out how to programmatically take a screenshot in android without root or adb,
what about executing script or simulating android keyevents? im trying to find solution but no success.
On Android 5.0+, use the media projection APIs. They are somewhat under-documented. This sample project demonstrates how to take screenshots.
On Android 4.4 and lower, this is not possible, outside of perhaps some security flaws on specific device models.
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 6 years ago.
Improve this question
I have created an app in Android Studio. I want to make it work on iOS too. Is it possible to open it in xcode and somehow translate it to obj C and build it to make it work?
EDIT: I have seen j2objc project but I can't figure out how it works...
I think this is not possible although there are Java to C++ converters but android to ios,I don't think so you'll have to create new application for ios in swift (xcode).I don't know about j2objc but I still think its better to develop fresh application for a new language.
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 6 years ago.
Improve this question
Let's say I want to build a mobile App which others can include/integrate in their app as a separtate module. The goal is that the customers can add the functinality of my app into theirs. Since the customers have different OS/plattforms it should be plattform independent. Could i write a html5 hybrid app which is then integratable through a plugin into every existing app?
Given the fact that you want to use native features and want developers to actually integrate your plugin you likely do best by programming it natively.
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 6 years ago.
Improve this question
I asked this question in Android Enthusiasts but I don't know if that is the correct place to ask. I'm looking to build a simple application that I'd like to post to Play Store.
However, my programming knowledge is limited to VB6, VB.net, VBA - primarily VB6. After doing some brief research it looks like I might not be able to build it in VB, but would C# work? Any advice?
Start with learning Java first since all Android applications are Java based. After that, you can start learning to create applications on Android Studio.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have been trying to use tesseract OCR for android, but I need to train for a specific font. I was thinking of doing that on Windows version first and then use the same parameters in Android. Can somebody please let me know if the training procedure for Windows version and android version are same or do we have to follow different procedures. So far I have not been able to distinguish between the two.
Thanks for your answers.
AFAIK, the .traineddata files are platform independent. You can train and generate it on Windows and use it on others.