Android :: Make A Rather Native C++ App With Droid / Legal To Write Such For Market?
Feb 20, 2010
I'm interested in the following features:
Writing an app for Android Market that is written completely in C++ (a port of existing product actually).
Use fast screen-buffer pixel pushing (or rather using OpenGL ES for this).
Grab user input and direct it to C++ code.
Is it legal to write such an app for Market? Is Market policy somehow strict to such things?
View 5 Replies
May 10, 2010
Is it possible (without violating any licenses) to write a native C/C++ application on top of the Android OS and make it run as a daemon process?
There are already several daemon process' running which one can see with the 'ps' command, the legal part concerns me the most. And also the lack of documentation on how to exactly do this.
For the writing part, I guess one could use basic Linux programming concepts, since Android supports at least to some level the standard Posix API. To make it run as the phone boots, some modifications is of course required in init as well.
I have no plans to have this app in the Android Market, so installing it manually to the phone is not a problem. As long as it does not require re-compiling the whole OS or kernel.
View 2 Replies
View Related
Oct 21, 2010
Are there any legal sites where I download market content? reason I ask his, I can't find some things on the market... I assume its a compatability issue but if I do it illegally they work on my wildfire. so if I want to do it legally how can I? or am I going to have to stick with illegals if I want the apps I do?
View 6 Replies
View Related
Jul 21, 2010
I'm about ready to market my first Android App (from a US Google Checkout/Merchant account with US bank account etc.), and I would like to have the user at least agree to some kind of simple liability disclaimer before he/she can install the app. To your knowledge, is it possible, and if so, what would be the best way to do this?
View 2 Replies
View Related
Feb 16, 2010
I am making an android application that shows a list with users, I would like to add the image,name,status,and a button in every row of the list, just like in the androids 1.6 native caller-> favorites tab.Until know I have managed to add the image and name using an ListActivity but when I try to add the button the list becomes unselected.So I have 2 questions, first is the list mentioned above listviews or listactivities? also is this possible using listActivity? and second, what is the difference of the above mentioned classes?
View 1 Replies
View Related
Oct 7, 2010
Hello, I would like to create a zip file from files located on the sd card, I have managed to do that using java but I think that the result is too slow, so I thought of going native using the android NDK.
My questions are:
Does anyone know any C/C++ library to zip unzip files that will work on android?
How to know if the library will work on android?
will this make any difference on performance?
View 3 Replies
View Related
May 2, 2010
I'm just wondering if it would be possible (and legal) to port an Android app to desktop? I'm creating an android game that would work well on PC too (even with the cellphone like layout) and was thinking that maybe I could 'embed' an android emulator with an installer or would that process be a bit hard for a novice Java coder?
View 1 Replies
View Related
Feb 3, 2010
Can anybody tell me what are the legal restrictions about using the android mascot?
View 2 Replies
View Related
Jul 28, 2009
I'm try to make a dial in native code, could i make a dial with RIL through socket or IPC communication?or push AT command directly to GSM Modem.
View 2 Replies
View Related
Feb 10, 2010
I was wondering if the I Music App is legal. Seems way to much like limewire, but I've heard it is legal and it isn't? Is it?
View 23 Replies
View Related
Aug 9, 2010
Has anyone switched from a standard home internet to using just the droid X hotspot capabilties? If so how does the cost compare? I am considering getting two droid x's and paying for tethering if it will repalce my normal home internet which is via satellite and runs $45 a month.
View 6 Replies
View Related
Nov 3, 2009
Now i want to write an application to make a certain text to run slowly from right side screen to left side screen and rotate to repeat. How can i do that?
View 9 Replies
View Related
Apr 12, 2010
I'm thinking of moving from iPhone to HTC Desire but unlike many people I actually like iTunes and while I appreciate I can get music from other sites (Amazon etc) I can't find anywhere where I can download music VIDEOS from to then copy to phone (note - download, not stream).
View 4 Replies
View Related
May 31, 2009
Like the Alarm Clock, Calculator, etc. I see that the source is available at :
http://source.android.com/
For example, the alarm clock I'm going to modify will "look exactly the same" as the built-in one, but there'll be a lot more functions. Is it legal to extend the functionality of the Alarm Clock and publish it as paid application?
View 8 Replies
View Related
Aug 18, 2010
I have seen some threads and people worried about Rooting and if it breaks contract. Well according to the government it is now legal. Source.
View 3 Replies
View Related
Aug 1, 2009
The following code leads to "java.lang.IllegalThreadStateException: Thread already started." the second time it is run through on the program This happens the second time updateUI.start() is called. I've stepped through it multiple times and the thread is called and completely runs to completion before hitting updateUI.start(). Calling updateUI.run() avoids the error but causes the thread to run in the UI thread (the calling thread, as mentioned in other posts on SO), which is not what I want. Can a Thread be started only once? If so than what do I do if I want to run the thread again? This particular thread is doing some calculation in the background, if I don't do it in the thread than it's done in the UI thread and the user has an unreasonably long wait.
View 5 Replies
View Related
May 30, 2010
Can someone please explain to me if tethering is free and legal? Why do some sites say Verizon will charge extra? Will they? Do they? So can you do it free and legally? How do you do it?
View 18 Replies
View Related
Nov 20, 2009
Everytime I try to fake another provider, my Hero reboot. It was working before I run MoDaCo 2.9.
View 3 Replies
View Related
Jun 16, 2009
I'm trying to develop/port a game to Android, but it's in C, and Android supports Java, but I'm sure there must be a way to get a C app on there, anyone knows of a good tutorial on the subject?
View 16 Replies
View Related
Sep 12, 2009
Is there anyway to write android applications in PHP? This page clearly mentions that Android apps should be written in Java. Just wondering if there is another way. http://developer.android.com/guide/topics/fundamentals.html.
View 4 Replies
View Related
Jan 6, 2010
I use the youtube api and other libs such as gdata_client... http://code.google.com/intl/zh-TW/apis/youtube/getting_started.html but I always get the verify error: so I want to confirm whether Android can integrate gdata and youtube api(lib)? or is there have mailing list for "gdata" that I can serach for problems?
View 6 Replies
View Related
Apr 23, 2009
Though there is a library written by a c language, I cannot call it from UI side because it is not a JNI library.
View 2 Replies
View Related
Mar 2, 2010
I want to write some debugging output to the log to review it with logcat. If I write something to System.out this is already displayed in logcat. What is the clean way to write to the log and add levels and tags to my output?
View 2 Replies
View Related
Sep 22, 2010
I've already written a game engine in java using eclipse and opengl es, I had one project (an android project) which contained both of my packages com.logic.engine com.logic.testapp I wanted a way to keep my engine and test app seperate, I've made an earlier post about how this is done, and I figured out how to reference one project in the build path of another (or just creating a jar file). My problem is that, lets say I now have my engine all wrapped up in an android project com.logic.engine, and now someone would like to use this engine to create a game, so they create an android project com.someclient.game, well now because we have one android project referencing another, it crashes everytime. Now obviously i need the android sdk in my engine package in order to reference things, but its also required on the client app, since the activity is what is actually being run by android. I guess my question is, how can i create a project for my game engine without it being an android project, but still referencing the android sdk, and without causing it to crash the client app using it?
View 2 Replies
View Related
Jun 28, 2010
can anyone tell me where I get the icons native android?
View 3 Replies
View Related
Oct 22, 2010
Is there a way to convert my web app into native android app?
View 2 Replies
View Related
Aug 11, 2009
Android have native IM code, but we can not use, I add code...
View 2 Replies
View Related
Jul 13, 2009
Dear Android community, i've a license/legal question regarding asking Google directions to be drawn directly into the MapView. Some of you know that asking google http://maps.google.com/maps/nav will give directions in Json + a Polyline encoded form.What i would like to know is, where is the Terms of Service regarding this functionality? It is for Google internal use or not? There's also the KML which gives similar informations. Please note that it is NOT for real time driving directions but a path to be drawn from a point to another and your position NOT refreshed in real time and of course it is for an app downloadable free of charge.
View 3 Replies
View Related
Nov 24, 2010
We all know that Android runs Dalvik VM programs. Normally developers write programs in Java and they compile it to Dalvik bytecode. I wonder if it would be possible to create a compiler that can take C# code and compile it into Dalvik bytecode.
View 1 Replies
View Related