-3
votes
2answers
48 views

Can I port Cyanogenmod without actual compiling? [closed]

I recently got a chinese Android 4.2 tablet. I have R/W access to all the flash memory of it. Is it possible to do a "lazy port" of Cyanogenmod for it, like replacing files in the /system partition ...
0
votes
1answer
69 views

Python and opencv program for android? [closed]

I am currently working on a contour image comparison proram in python & opencv. The program simply compares the real-time contour image from the webcam, and compares it to one of the various ...
0
votes
1answer
83 views

How to use ACL of Tizen

I'm new to Tizen. Searching ahead to have Android apps developed already to work on Tizen, I found Tizen can run Android/Bada apps using Application Compatibility Layer (ACL) Could someone please ...
-1
votes
1answer
62 views

Porting Kernel From Another Device [closed]

I am developing CM10 for my device, and I want to port 3.4 kernel from another device (because my device doesn't have 3.4 kernel). I am fairly new to android development, therefore I need some ...
1
vote
0answers
120 views

Building Galaxy S3 Kernel for another Galaxy S3 variant

Basically what I am trying to do is build a kernel that has configs for one variant of the Galaxy S3 (d2usc) for another Galaxy S3 (d2cri) which they are both essentially the same model, but the ...
1
vote
1answer
60 views

Making Android code cross platform

My Android app uses dynamic UI. That is, all of it UI screens are made up of only simple types (gallery, list view, form view) and they are created entirely by java code instead of using xml ...
0
votes
0answers
51 views

Android OS Porting For x86 Architecture

Yesterday I was doing andoid os porting for x86 Architecture, I followed all the steps given in android open source wesite from building environment, downloading source, and finally building the os ...
-4
votes
2answers
51 views

porting Android mobile application for multi platfrom [closed]

Porting Android mobile application to various platform possible. Need to implement Blackberry,Symbian,Windows phone OS Is any Tools,Methods,procedure are available.
-4
votes
1answer
79 views

How can I port a text based game on eclipse to android [closed]

I am writing a text-based game in java on eclipse. It's similar to zork if you've ever played that. I wondered if there was any way to take my program and turn it into an android app easily, or if I ...
0
votes
1answer
277 views

Android: Executing a program on adb shell

I have created an executable using "include $(BUILD_EXECUTABLE)" command in Android.mk . My requirement is to execute the above generated executable over the abd shell. I tried: Below is my C-Code ...
0
votes
1answer
101 views

Suggestions for optimizing a video decoder

I recently ported a video decoder(written in C) to android platform. its output was in YUV format. So i had to convert it to RGB8888 to display it using the ANativeWindow API from the native code. ...
0
votes
0answers
44 views

Port intent-filter from Android to Blackberry

I am porting my Android app to BlackBerry Playbook. My app using intent-filter like that: <intent-filter> <action android:name="android.intent.action.GET_CONTENT" /> <category ...
0
votes
2answers
217 views

Differences between SQLite database in Android and IOS

I an tasked with porting and Android app I built some months ago over to iOS. Now, I have also worked with SQLite in iOS in the past. However, I remember it being a lot more work than the Android ...
0
votes
1answer
172 views

Porting Android to BB: When clicking the “Info” button, the app crashes

Recently we ported successfully an Android application on BlackBerry 10. Everything worked fine, except the thing that when clicking the "Info" button from the action bar that appears at the bottom ...
0
votes
1answer
182 views

Porting ios to android: http post

Trying to post image with additional data. IOS code: NSMutableDictionary *params = [NSMutableDictionary dictionary]; [params setValue:userID forKey:@"userid"]; [params setValue:sessionID ...
0
votes
0answers
464 views

Porting from Android to Symbian in phonegap

I have finished building a mobile app in android using Phonegap and jquerymobile framework and now started porting to symbian os and followed documentaion here .In both os the project is built in www ...
1
vote
1answer
182 views

What are differences between same ROM for different devices? [closed]

For example, can anybody give some concrete examples of differences between Cyanogen Mod 10 for Samsung i9100g and CM 10 for i9100? As far as I know, they have different hardware and that's why their ...
0
votes
1answer
109 views

Linux/Android: how do you find out if a mutex object already exists?

I'm currently attempting to port a Multithreading library written for WIN32 to Android/Linux and I seem to have run into a bit of a problem trying to map over a particular feature that WIN32 mutexes ...
-5
votes
1answer
32 views

Porting Windows Queues/Stack to android

I was thinking to port Queues and stack used in Windows to Android. Is it possible to do the same? Can it be done with the help of Android NDK?
0
votes
1answer
138 views

porting: Android/Linux client/server socket communication issue

I'm porting a Server/Client socket application from Windows to Linux/Android and I can't seem to figure out what the problem is. Basically, what the Client does is send a string of chars to the ...
1
vote
1answer
320 views

Android/Linux ioctl FIONREAD failing

I'm in the process of porting some (socket-related) Windows C code to Linux/Android and I'm running into an issue with the ioctl command: unsigned long u; if(sockfd != -1 && !ioctl(sockfd, ...
0
votes
0answers
42 views

How to set NDK level for android application

I have a C++ project which I build using android NDK-7 and also successfully loaded this shared library into my android application. But while I am calling one of the native function application get ...
0
votes
0answers
58 views

Native function is not executed, calling from android application

I have a C++ project which I need to port into android. Actually I already build the shared library using android NDK and load the library successfully from my android application. But the problem I ...
0
votes
0answers
55 views

Asset mapping from iOS to Android?

I'm working on basically porting an app from iOS to Android and am curious about general strategies for bringing over the assets. Our iOS project has essentially 3 classes of assets: * Small = 480 x ...
0
votes
0answers
189 views

steps to port kernel from gingerbread to ICS

could anyone provide me any steps to port ICS on a hardware that already runs gingerbread? Since the hardware already has GB kernel running should I take the same kernel and try running the ICS ...
0
votes
0answers
171 views

MIUI porting FATAL EXCEPTION IN SYSTEM PROCESS: android.server.ServerThread

I tried porting MIUI to htc explorer by taking base as evervolv and using miui4 for live with walkman to port.. I edited and repacked framework.jar and it solved half the errors... and finally ended ...
1
vote
1answer
808 views

Going from Android to iOS in PhoneGap

How does PhoneGap work? (I'm still going through all their faqs, etc.) I downloaded the andriod sdk and installed PhoneGap stuff and also got the Hello World working on the Android emulator. Now how ...
0
votes
1answer
688 views

How To Port iOS Game To Android [closed]

I have a cocos2d iPhone game that I would love to put on the Android marketplace, but I don't know how to go about porting it. I would appreciate it if someone helped me. Thank you for any help I get. ...
2
votes
1answer
188 views

Porting Visual C/C++ to Android, stopover at linux?

I need to port a fairly large Visual C/C++ Project to Android in my recently started internship. I asked another question about that topic yesterday, asking for some help finding a concept for the ...
1
vote
3answers
730 views

Porting Visual C/C++ to Android

in my resently started internship (i'm studying computer science) i have to port a somehow big existing Project to Android. It is a Visual C/C++ Project which in the end should run on Android using of ...
0
votes
1answer
270 views

Set default file/directory permissions for /data/sdcard in Android

I'm currently creating a custom build of Android-gingerbread for one of my device by making some modifications I need on the source-code of Android. I wanted to know if there is any way by which I ...
0
votes
2answers
752 views

Running .NET app and DLLs on an Android phone?

I've got a .NET app and some related third party DLLs, that I would like to run on an Android phone. The .NET app is written in C# and the DLLs are fully mananged, although they contain some unsafe ...
2
votes
0answers
116 views

Building own Android with own UI for Vodafone Smart Tab

We are working on experimental project and we need to build own Android and replace it with our own UI for Vodafone Smart Tab which comes with Android 3.2. As a resource I am using ...
1
vote
1answer
2k views

porting libcurl on android with ssl support

I am trying to port libCurl to android with SSL support, step one would be to port the curl without ssl support I guess so I started doing that. but I run into a problem. as I read on the dev ...
0
votes
0answers
401 views

Porting a simple free iOS app to Android

I'm curious about efficient strategies for porting simple iOS apps to Android. In this case "simple" means an app with one full-screen UITableViewController that's populated with an XML file ...
0
votes
2answers
166 views

Speeding up the porting of an iPad application to Android

My work consists of porting an iPad application to Android (so from Objective-C to Java). I've developed in the Android environment, but never in iOS. Currently I am looking for advice -- I'd like to ...
0
votes
1answer
553 views

Porting a game from Android SDK GLES 1.0 to NDK GLES 2.0?

I'm currently developing an Android game using the SDK GLES10 and I'm experiencing some performace issues with it on not so good phones like the Samsung Galaxy Ace. So I've thought about porting it to ...
0
votes
2answers
205 views

Porting embedded Visual C code to Android [closed]

I have been programming in eVC (Embedded VC) since quite some time.I have written certain applications on eVC.I am just curious if at all it is possible to port eVC code to Android platform. Are there ...
1
vote
0answers
706 views

How to port libnfc to Android 4 (Ice Cream Sandwich)?

I came across a pdf online which gave me the porting guide for libnfc to android. I was wondering if anyone has ported libnfc to Android ICS so that we can use the compiled files directly. If not, ...
2
votes
1answer
346 views

Good books for porting android/java to ios/objective c

I spent the last year working on a project that involved mostly java for android but used c++ for some additional libraries through jni. What I would like to do is port the whole project into ...
0
votes
1answer
325 views

Porting j2me application to android platform

I have developed j2me application. Now am porting that application for android platform. I have downloaded android sdk and configured android.home in build.xml. Then I issued ant emulator I am ...
1
vote
1answer
414 views

Json-RPC Method from iOS to Android

I have a java webservice, with some method. The webservice methods are in this form: @Webservice(paramNames = {"email", "password", "stayLogged", "idClient"}, public Response startSession(String ...
1
vote
0answers
75 views

scan github for code to port to Android? [closed]

I thought of the idea of scanning github or google code or other repository sites to try and compile each project for Android. Is there any Android porting tool out there that would help with this ...
0
votes
1answer
517 views

Android App to BlackBerry Playbook - Google Maps Issue

I'm porting my android app to playbook and keep getting an error related to not supporting Google Maps, however I don't use that anywhere in my project. It's also not mentioned anywhere in my ...
0
votes
4answers
3k views

How to port a Windows Phone 7 App to Android

I have developed a Game for Windows Phone and would like to port it to Android. Google gave me many information and tools to port from Android to WP7, but I want the opposite... Does anyone know a ...
0
votes
3answers
647 views

Porting simple j2me source code to Android

I am trying to port a simple j2me application to android. The j2me app uses Canvas, Image, List, Form, Command. I am trying to figure out how to port this to Android. Please suggest me what will be ...
1
vote
1answer
338 views

Porting Java OpenGL-based Android game to iOS (no native code)

I might be a little screwed here. I've been developing an engine for use in various games that I've been making for a long time now. The engine is written in 100% Java(no NDK), and uses OpenGL ES 1x ...
3
votes
2answers
1k views

Porting iPhone App to Android platform

I am trying to get my iPhone App on Android platform as well. I was wondering if there is anyway I can directly port my iPhone App or Code to Android? Do I need to write whole App from the scratch for ...
-1
votes
1answer
146 views

An approach to porting a project to another platform

I am an intern at a company trying to push an android and iPhone out out within the next 5 months. Today, I received information about my first "real" assignment which will entail porting the iPhone ...
1
vote
1answer
114 views

need a warning about overriding a function with const parameter

How do I make GCC inform me about redefining member functions with a different signature? I am porting a large project to Android. Due to the differences in the M$VC and GCC dialects, I inserted a ...

1 2 3