0
votes
1answer
27 views

Android/Java File.mkdirs() in external storage not working

First off, I want to specify that I do have <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> specified in my manifest, and I do check Environment.MEDIA_MOUNTED. ...
-1
votes
1answer
12 views

CSS not displaying when accessing pc locahost from smartphone

I'm trying to connect to my laptop's localhost from android device. My phone and laptop are on the same wiki network and I can connect to localhost by typing IP Address/website. However, the site ...
0
votes
0answers
13 views

How to make reference to an android library project inside Android.mk

I am using an android library project in my application. android-uitableview is the name of the android library project. How should I add it inside Android.mk file Following is my current Android.mk ...
0
votes
0answers
30 views

Adding custom library in Android system libraries

I want to try something out. I want to create a very simple app that accesses the my custom libraries. Not only that, I want to use my own C libraries without using Android's NDK. How can I add or ...
0
votes
0answers
17 views

Where to start Android drivers with I2C

Thanks for taking a moment to read my question. I am a starving intern and I really want to get some work done! I have a sensor device, OEM, that I will be adding to a dragonboard like this. ...
0
votes
2answers
26 views

Connecting usb to uart device to android device >3.1

I know that the latest android device with API>3.1 support USB host mode or USB OTG that allows you to connect a lot of usb devices like flash disks,mouse,keyboard etc. but can you connect any device ...
3
votes
0answers
1k views

Android Studio installation on Ubuntu 12.04 fails to initialize [closed]

I get this error while trying to install Android Studio on Ubuntu 12.04 . Plugin com.intellij failed to initialize and will be disabled. null Please restart Android Studio. Anybody has tried to run ...
0
votes
0answers
60 views

insmod: init_module failed (Exec format error)

I'm able to compile kernel module for Galaxy S4 Kernel 3.4.xx but I get following errors during module insertion. could someone please shed some light on what's missing here. The kernel module is a ...
0
votes
0answers
24 views

iptables moving rule in a list

i have 2 rules of iptables iptables -A INPUT -s 5.5.5.5 -j DROP iptables -A INPUT -s 6.5.5.5 -j ACCEPT is there a function or a command that will swap the rules to be like this: iptables -A INPUT ...
0
votes
0answers
21 views

How to execute javascript on same browser tab through adb

I'm trying to open a URL and execute a javascript on the same page. I managed to open two consecutive URLs in the same tab using -e but when I try to use javascript, it opens a new tab instead of ...
0
votes
0answers
32 views

Reading from console input

Here is a weird hardware setup that I have got from someone: There is a receiver module that receives data wirelessly via some RF modulation. The module has a uart interface which it uses to send ...
-1
votes
1answer
35 views

Android x86 running with pure Linux kernel? [closed]

I'm just curious... Starting from Linux 3.3 kernel, it already has Android capabilities. Is it possible to run Android x86 above a Linux 3.3 or up kernel? If possible, can you give me any reference ...
0
votes
1answer
27 views

Android privileges to execute native applications?

I downloaded the c4droid app for Android and am running commands through system();. I'm learning that somethings work while others don't. Most of the cool stuff don't work and this appears to be due ...
0
votes
1answer
28 views

Android Device Driver make node

I have a course project that involves setting up a device driver on Android. I have previously worked with device drivers in the Linux kernel and we used two commands to initialize the device and make ...
-1
votes
1answer
32 views

Changing the default microphone for android [closed]

I have a phone with two microphones (main and noise reduction mic). The main microphone now is broken. If I turn on the speakerphone when i call - my voice is well received by the second microphone. ...
0
votes
0answers
31 views

How to add readline library to an ARM based processor runs Android?

I want to use readline lib on emmbbeded linux (an Android platform), I want to write something like this. basically I need to include these .h files in my c code: #include ...
0
votes
4answers
60 views

andoird relationship with linux

If android uses linux, than how does it run on windows machine for development? I understand that android uses java byte codes and converts them to Dalvik byte code. So, I need java to write android ...
0
votes
1answer
21 views

How can I disable the SDL splash screen?

I'm porting an SDL-based game from Linux to Android, and it's going very smoothly. However, the Android version displays an SDL splash screen ("Powered by SDL") while initializing, and the Linux ...
0
votes
0answers
40 views

fsl i.mx6 burning ,when start the burning android system appear Initialize error

U-Boot 2009.08 ( 3月 05 2013 - 17:20:28) CPU: Freescale i.MX6 family TO1.2 at 792 MHz Temperature: 34 C, calibration data 0x5774e769 mx6q pll1: 792MHz mx6q pll2: 528MHz mx6q pll3: 480MHz mx6q ...
1
vote
1answer
179 views

adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system Operation not permitted

i have put this command but facing this problem Operation not permitted adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system and this error is shown Operation not permitted
0
votes
1answer
34 views

Linux Script run on Startup

I'm looking to build CyanogenMod ROMs for android, I've followed a tutorial to setup the build environment. This is the tutorial I followed: ...
0
votes
1answer
78 views

Android Device Chooser not showing my device but adb and Eclipse do

I am trying to run my android app in an attached device (Sony Ericson Xperia X10). The device is recognized by adb [fonoro@localhost platform-tools]$ ./adb devices List of devices attached ...
-3
votes
0answers
71 views

Linux/Android UINPUT : Injecting Sensor (accelerometer Gyro) events from Application layer to Lower layer

I am posting my queries for the first so please pardon me if I have missed any protocol of writing the post. I am developing an Android based TV Set top box (STB). I am planning to give user a ...
1
vote
0answers
39 views

Android Display User space - Kernel space interaction

Android Display User space - Kernel space interaction. My current understanding is that there is a kernel driver for framebuffer which allocates the memory by calling mdss_mdp_alloc_fb_mem() This ...
-1
votes
0answers
59 views

Is it worth using Android on a lower end system [closed]

Does Android offer anything that would be of use to a lower end embedded system that would be difficult to achieve with a normal Linux build? There is obviously the very robust graphical interfacing, ...
1
vote
0answers
67 views

building android os images for mele a1000

I am using an android device an want to install my own custom rom for mele a1000 on to it. I have built an android os image from the source code for the android device. but the image which i have got ...
0
votes
2answers
105 views

How to run (gdb): target sim for ARM processors?

I try to load my vmlinux into gdb and use an ARM core simulator. but I can't understand why do I get Undefined target command: "sim".: Here is the shell output: $ arm-eabi-gdb vmlinux GNU gdb ...
1
vote
0answers
21 views

Can I share named pipe between app and framework

Here is an image of the structure of Android. My question is: Can I share named pipe between apps and app framework? As I know, libc is available for apps using NDK. For example, I create a named ...
1
vote
1answer
45 views

Does Android have any networking limitations comparing to Linux?

I have just read the following in "The Growth of Android in Embedded Systems" (PDF) by Benjamin Zores of Linux Foundation: Last but not least, Android has deliberately hobbled one of Linux’s key ...
0
votes
1answer
38 views

Is there a way to close a dynamically loaded library in Android?

As a preamble for non-Android people (some Linux folk may know the answer with this info): Every application in Android is run in an instance of the Dalvik Virtual Machine. When starting an ...
0
votes
1answer
35 views

Android fastest way to read multiple files?

I'm writing an android app, and i need to read 7 SYSTEM files at start up. What would be the most efficient way to do this? This is my code right now and it's pretty slow read(file1); read(file2); ...
0
votes
2answers
93 views

How to use Shared Memory (IPC) in Android

I've already written a simple Shared Memory C program in Linux. How can I use Shared Memory (or should I call it "ashmem?") in Android? I hope you can give me a step-by-step guide.
1
vote
1answer
107 views

How to get the accurate CPU Usage per process and process Idle CPU Time

I'hv been struggling to get the accurate CPU Usage per process and process Idle CPU Time.. I tried " top " command proc/[pid]/stat folder but still trying my luck.. TOP command gives CPU usage for ...
0
votes
0answers
25 views

is function tcsetattr() mapped to a file descriptor or a physical port

I've encountered a very strange problem in the developing of 232 communicaion between my android device and a 232 device. I want to set up the communication bewteen my MCU and a 232 device, the 232 ...
0
votes
1answer
60 views

Android script to move files?

I'm trying to create a simple script that will move files around on my Nexus 7. It is stock Android 4.2.2. What I have done is I have tried to create a test.sh script with the following contents: ...
0
votes
1answer
374 views

Error when installing latest Android SDK on Ubuntu 12.04 64bit

I'm on Ubuntu 12.04. I downloaded the android adt from http://developer.android.com/sdk/index.html: Download the android-sdk_r21.1-linux.tgz 64-bit Linux distro and extract it: Then run the ...
0
votes
1answer
47 views

Android SDK Config on Linux Prior to Eclipse/ADT Install?

I read Lars Vogel's Android Development tutorial and then headed directly to the Android SDK download page. I already have the Eclipse Java EE IDE (Juno; 4.2) installed, and would like to only ...
0
votes
1answer
153 views

mp3 file not getting pushed into android sd card on linux fedora

I am developing an android app in which I am developing an content observer for Audio.Media.EXTERNAL_CONTENT_URI I am using linux fedora 17 with eclipse and api level 17 android Jelly bean Now the ...
0
votes
1answer
27 views

Resolve linux PC name from android

I'm using Apache to host an internal web, from windows PC if I write the PC name that host the web I access, but if i write the PC name in a device with android , I can't access. I have been reading ...
1
vote
1answer
107 views

echo in init.rc

hi I want to add these scripts to init.rc but I get the error that init.rc doesnt support echo. echo device > /sys/devices/platform/usbc.0/mode what is the right way to do such a thing in ...
2
votes
0answers
51 views

When the application encourters a long name file, the process dies

the code goes: android.util.Log.i("QRDFileExplorer","loadDir().before=feaffdsafdsf"); String[] names=f.list(); android.util.Log.i("QRDFileExplorer","loadDir().string names="); The codes go well at ...
0
votes
0answers
58 views

DDMS and virtual creator don't work in eclipse

I came across few problems with eclipse: I downloaded android SDK on Linux (I use ubuntu 11.04) and ADT plugin. I start eclipse using terminal and after the eclipse start working in terminal appears : ...
0
votes
1answer
79 views

installing Apache POI for android using a linux pc

I'm developing apps for android, using eclipse, on a linux(ubuntu) pc. I cannot find any information on how to install Apache POI. could someone please explain step by step how to install Apache POI ...
2
votes
2answers
141 views

Android Systrace tool internally uses strace or ftrace?

Systrace Android tool calls internally a tool called atrace which is and extension of ftrace or strace (Linux tools). If we connect via the emulator console (ADB shell) to Android Jelly Bean we can ...
0
votes
0answers
69 views

How to know linux usb device file path for UsbDevice instance on android?

I have to connect to usb device on android and the user is expected to select device and allow access to USB, so finally i have UsbDevice instance. How can i know it's linux file path (something like ...
1
vote
1answer
64 views

UIAutomator runs 0 tests when built on Linux, but works fine on other platforms

I'm having an issue getting tests to run using the UIAutomator libraries for Android in Linux. The basic setup is a Nexus 4, or an Emulator with 4.2.2, JDK6, Eclipse, and Linux Mint 13. The root of ...
0
votes
2answers
68 views

Android Development - How to implement 2 player game using a Linux web server [closed]

I have written a Scrabble App using Java, but now I need to make it multiplayer. Thanks to my university, I have a linux based website for my personal use. Using this server, exactly how would I cause ...
6
votes
1answer
2k views

Android ADB: “No such file or directory” trying to execute linux binary

I built a native linux ARM binary using the Android GCC toolchain (plain linux, no android or NDK). I connected, from my PC, via adb shell, to a tablet running Android 4. I "adb push"'ed that binary ...
65
votes
5answers
25k views

Eclipse Android Plugin — libncurses.so.5

I am struggling mightily with installing ADT (Android Dev Tools) on Eclipse in Fedora 16 OS, 64-bit. Eclipse itself is running fine. As instructed, I first installed the regular Android SDK, the ...
25
votes
8answers
18k views

set up device for development (?????? no permissions)

I am using a Samsung galaxy nexus phone (Android 4.0 platform) . I am developing Android app on Ubuntu linux OS. I would like to run my application directly on the Samsung handset device, so I did ...

1 2 3 4 5 17