[android-porting] Android on devices without batteries - unlock screen problem

2010-07-20 Thread Daniel
vance Daniel -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] Re: Android on devices without batteries - unlock screen problem

2010-07-26 Thread Daniel
gh it is not completely working... Somebody knows how to add a fake battery to android froyo?? On Jul 23, 4:29 pm, abukustfan wrote: > Hi, > > I also use USB keyboard, but MENU key is mapped as [F1] key. > > On Jul 20, 4:58 pm, Daniel wrote: > > > Hi, > > > I a

[android-porting] Android native messaging framework (Looper, Handler, MessageQueue, Closures, ...)

2011-07-25 Thread Daniel
se, sp<...> and wp<...>. - add the Binder IPC interface by implementing the Messenger class as the Java framework does. - add Bundles and Parcels. - implement a native AsyncTask class (including Java's ThreadPoolExecutor) If you would like to submit some of the planned features

[android-porting] Re: IMX31 Touch Screen problem

2009-03-18 Thread Daniel
On our i.MX31 board Android did not recognize the touchscreen as a device of class CLASS_TOUCHSCREEN in frameworks/base/libs/ui/ EventHub.cpp in method EventHub::open_device. A workaround which sets "devices->classes |= CLASS_TOUCHSCREEN" in open_device manually for /dev/input/event1 worked for us

[android-porting] Re: How to use external modem in emulator

2009-06-04 Thread Daniel Baeyens
-verbose -debug all >>>>>>>> and from the ADB shell tried echo "ATD1234" > ttyS1 but there is >>>>>>>> nothing happened. >>>>>>> >>>>>>> ttyS1 is not connected to the emulated modem at all. Actually, none >>>>>>> of the emulated serial ports are, >>>>>>> so it's not surprising that this doesn't work. >>>>>>> >>>>>>>> >>>>>>>> as well itried using the local host 5554 and then gsm call 12344555 >>>>>>>> but got the rror message " KO: Modem Emulation not started" can any >>>>>>>> one help me in this. >>>>>>> >>>>>>> Probably because the GSM stack tried to talk with your ttyACM0 device >>>>>>> and got answers it could not >>>>>>> parse properly, for some reason. Try "adb logcat -b radio" to display >>>>>>> the radio log, which includes the >>>>>>> AT commands exchanged between the modem and the stack. >>>>>>> >>>>>>> >>>>>>>> >>>>>>>> Sram >>>>>>>> >>>>>>> >>>>>>> >>>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> >>>> >>>> >>>> >>>> >>>> >> >> >> >> >> > -- Daniel Baeyens Warp Networks S.L. - http://www.warp.es --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting -~--~~~~--~~--~--~---

[android-porting] Re: Using ADB in VirtualBox

2009-10-16 Thread Daniel Baeyens
ur network configuration (guest IP, type of Virtualbox virtual network, etc), just to be sure... Moreover, check if adbd is launched on your guest host Kind regards, -- Daniel Baeyens Warp Networks S.L. - http://www.warp.es --~--~-~--~~~---~--~~ unsubscribe: android-po

[android-porting] Re: Linking libraries fails

2009-12-16 Thread Daniel Cheng
I also have the same issue. Anybody can help me? Thanks~ -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] mini2440 Kernel Panic

2010-01-07 Thread Daniel Moore
Hello All, Below is a boot log from my attempts to boot Android on the mini2440 FriendlyArm platform[1][2]. If you could be so kind as to assist me with resolving this error please let me know. # FriendlyARM BIOS 2.0 for 2440 # [x] format NAND FLASH for Linux [v] Download vivi [k] Downlo

[android-porting] Re: mini2440 Kernel Panic

2010-01-07 Thread Daniel Moore
there is an error in my linuxrc file. Thanks, Dan Moore On Thu, Jan 7, 2010 at 12:01 PM, Daniel Moore wrote: > Hello All, > > Below is a boot log from my attempts to boot Android on the mini2440 > FriendlyArm platform[1][2]. If you could be so kind as to assist me with > resolving th

Re: [android-porting] Re: mini2440 Kernel Panic

2010-01-07 Thread Daniel Moore
Michael, I actually am using it and the android release for the mini2440 as a starting point. I had android booting for a week or so but now I getting these errors. Thanks, Dan Moore On Thu, Jan 7, 2010 at 2:50 PM, Michael Trimarchi < trimar...@gandalf.sssup.it> wrote: > Hi, > > why you don't

Re: [android-porting] Data connection via cell modem (GPRS)

2010-05-10 Thread Daniel Baeyens
use the default route that is set up via > pppd. Can anybody give me some pointers on what needs to be done to > get Android to use the connection?  Thanks much in advance. Which is the full command you are using for setting the route? Can you explain a little bit more your process? KR -

Re: [android-porting] Re: Data connection via cell modem (GPRS)

2010-05-10 Thread Daniel Baeyens
ndroid RIL or just via >> init? I am unsure of whether Android will understand that it has a GPRS >> packet data connection without proper handling in the RIL (I don't know if >> setting the above properties is sufficient)... >> >> You should be aware that in later Android re

[android-porting] AudioPlayer class

2010-07-27 Thread Daniel Charles
player and it has not a HardwareOutput. How could I use AudioTrack instead of AudioSink? Which is the difference between these two. AFAIU, both are connected to audioflinger somehow. I appreciate any hint on this. Thanks. -- Daniel. -- unsubscribe: android-porting+unsubscr...@googlegroups.c

Re: [android-porting] AudioPlayer class

2010-07-28 Thread Daniel Charles
information from AudioTrack.h class definition. I would prefer, in my case, to use AudioTrack since calling setSampleRate looks cleaner than what I can do with AudioSink. I may submit the patch to gerrit and see comments from the google engineer. Thanks. -- Daniel. > > Thanks and

Re: [android-porting] AudioPlayer class

2010-07-28 Thread Daniel Charles
created when using AudioSink, so there's not going to be two running at the same time. I haven't checked but I assumed the callback is created later for AudioSink. Then in my experiment there should be only one callback for AudioTrack, in a scenario where multiple callbacks a

[android-porting] StageFreight seeking improvements

2010-10-11 Thread Daniel Charles
could be the best approach to improve the seeking experience in StageFreight. Can the pause and resume methods of both AwesomePlayer and AudioPlayer be refined for this purpose? I can continue the investigation, although I need some guidance to improve the seeking in the correct way.

[android-porting] Playback on multiple audio outputs

2010-11-17 Thread Daniel Latte
Hi We have two separate audio outputs in our system and we would like to be able to playback simultaneously on both. We're thinking using the MixerThread to play on the main output and the DirectOutputThread to play on the secondary output (basically, playing an MP3 file on main output and during

[android-porting] Re: Problems with GPRS module

2010-12-14 Thread Daniel Baeyens
Hi, If you are using the default reference RIL, you are going to have plenty of problems as it is quite incomplete. You should develop your own libvendor-ril library to make android work better with your GPRS module (or ask your vendor for it) http://source.android.com/porting/telephony.html Kin

[android-porting] Browser not working 4.0.1->4.0.3 / Solution

2011-12-26 Thread Daniel Fages
Hello, I'm working on building AOSP for VirtualBox. When upgrading from 4.0.1 to 4.0.3, the Browser and the WebView component don't work anymore - HTML pages are just loading and loading without anything showing up... After some hours studying the diff between the 2 versions, I realized that some c

[android-porting] i really want to port at least gb to my gateway mx6650

2011-12-29 Thread Daniel Strand
Ok fellas, this is what i have going on here, im a long time linux user about two years ago i got into android hacking and fell in love with android. i have too many questions to put into a single post. Basically what i want/need is specifics on compiling/porting x86 android so i can build a workin

Re: [android-porting] [Android ICS] How to configure a proxy for Internet Access

2012-01-10 Thread Daniel Fages
Bonjour Fabien :-) I had to do the same thing for Froyo but, looking at the ICS source code it seems things have changed... First of all, I have to say it was quite painful (in Froyo but should be the same in ICS) to find all the places where the proxy has to be configured. There are different Jav

[android-porting] ported 2.3.7 rom wifi not working

2012-04-09 Thread Daniel Vedovato
hi i ported an android 2.3.7 rom to my device arnova 7cg2, i made a port from a zte v9. wifi, bt, gps is not working, why? what .so files have i to change? can i export original file from old arnova rom to new rom for fix this problem? if yes, which files? thanks -- unsubscribe: android-porting+u

[android-porting] Re: android music player can't play mp3 format file

2013-01-17 Thread Daniel Padilla
One of your problems is : Invalid CTL AndroidOutandInvalid CTL AndroidIn You should have a /system/etc/asound.conf file. In that file you will see some definitions for the output and input device. If you see "AndroidPlay" change it to "AndroidOut", AndroidRecord ->

[android-porting] Re: Porting ICS/JB to Huawei Vision U8850

2013-02-05 Thread Daniel Korekovcev
http://4pda.ru/forum/index.php?showtopic=358221&st=1000#entry16789054 воскресенье, 30 декабря 2012 г., 3:31:12 UTC+4 пользователь echowave написал: > > I am a Huawei Vision user and I wonder if it's possible to port Android > 4.0 or 4.1 to it. I must admit that I have very little knowledge about

[android-porting] Porting ICS/JB to Huawei Vision U8850

2013-03-25 Thread Daniel Korekovcev
We are ported ics,info 4pda.ru -- -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting --- You received this message because you are subscribed to the Google Groups "android-porting" group. To unsubscribe from this group and stop

[android-porting] Power Wire Powered Android

2013-11-05 Thread Daniel Grießhaber
Hey I'm currently developing for a Board powered by a Powerline. This is the reason I want to remove all the Features I dont need like Keyguard, Settings to Switch of Display after X Minutes, etc... Is there any switch in the Build to remove these Features? Or what files should I look through fo

[android-porting] signing update.zip for stock recovery

2013-11-21 Thread Daniel Grießhaber
Hey guys, I'm currently trying to apply an update over the stock android recovery. I created the zip contents and my own keys for the android build but it failes with a signature verification error. I have now found this piece of code in the `bootable/recovery/verifier.cpp` #define FOOTER_SIZE

[android-porting] Re: signing update.zip for stock recovery

2013-11-22 Thread Daniel Grießhaber
Ok, now I know I forgot the -w parameter for SignApk.jar. But now it failes with: I:1 key(s) loaded from /res/keys Verifying update package... I:comment is 1691 bytes; signature 1673 bytes from end E:failed to verify whole-file signature But I use the testkey from /build/target/product/secutity

[android-porting] Re: signing update.zip for stock recovery

2013-12-06 Thread Daniel Grießhaber
Thanks, that actuall was the Problem. My keys geht overwritten by a makefileentry -- -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting --- You received this message because you are subscribed to the Google Groups "android-por

[android-porting] How personal data from the platform certificate can be used?

2013-12-23 Thread Daniel Lukashevich
Hi all! I'm porting android platform and I have the following question: Why it could be important to provide real personal information to platform certificate(s) ? Maybe some real examples. Thank you! Dan. -- -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://gro

[android-porting] Porting Android 4.1 to 4.2 -- SDCard Issues

2014-01-05 Thread Daniel Santos
Hello, I have been trying to port my phone Newman N2 to Android 4.2 Things are going kind well. But there is a problem i can't solve and i am lost here. And i have searched and researched and tryed everything i could and squeezed every idea i could have. Here is the description . The phone ha

[android-porting] Android System can't boot without launcher

2014-01-05 Thread Daniel Lukashevich
Hi All!!! I have own ROM without launcher but with my Admin APP which starts when device Boot Completed. Then this app download Launcher over the NET and install it. So I have the following question. How can I get device BOOT working without Launcher installed? I got the following error when t

[android-porting] Re: Disable lock screen and start application just after booting Android

2014-01-05 Thread Daniel Lukashevich
I think it is enough to update the following value in SettingsProvider: false in* frameworks/base/packages/SettingsProvider/res/values/**defaults.xml* Regards, Dan пятница, 22 февраля 2013 г., 14:09:25 UTC+3 пользователь Alex написал: > > Hi, > > I'm working on porting Android on a board and

[android-porting] Android Encryption hangs infinitely

2014-01-17 Thread Daniel Grießhaber
Hallo, I'm currently trying to get the whole disk encryption in android to work on my Nitrogen6x developemnt board. I can now start encryption inplace with the UI or over vdc. I also added some logging in cryptfs.c right before and after the write in the unix_write() function. After some spammin

[android-porting] Can't enable Bluetooth

2014-05-02 Thread Daniel Meer
Hi I have a BeagleBone Black which runs the AOSP 4.4.2 (instead of Rowboat). Now I want to add a Bluetooth module over UART. What I've done so far: - Create my own libbt-vendor.so - Added following lines to the BoardConfig.mk BOARD_HAVE_BLUETOOTH := true BOARD_HAVE_BLUETOOTH_BFH := true Whe

[android-porting] Re: Can't enable Bluetooth

2014-05-06 Thread Daniel Meer
On Tuesday, May 6, 2014 10:08:20 AM UTC+2, Vishveshwar wrote: > > Is the following file present in your device? > system/etc/permissions/android.hardware.bluetooth.xml > > If not modify your device.mk to copy this file over. > e.g: > >1. PRODUCT_COPY_FILES += \ >2. > frameworks/nati

Re: [android-porting] Re: Change video hardware on the fly

2015-01-29 Thread Daniel Doron
Hi, Has anything changed on this topic since 2009? Is there another way to achieve dynamic display resolution change on the fly system wide or per app (the one in focus)? Daniel. On Friday, January 16, 2009 at 2:31:39 AM UTC+2, Mathias Agopian wrote: > > On Thu, Jan 15, 2009 at 4

Re: [android-porting] Re: Change video hardware on the fly

2015-02-04 Thread Daniel Doron
step in the right direction. Daniel. On Thursday, January 29, 2015 at 7:05:43 PM UTC+2, Zoltan Kuscsik wrote: > > Hi, > > the answer is yes and no. There is now an abstraction of the display that > you can use to control/resize, the command am display-size. > On the other

[android-porting] Re: Customize android operating system

2015-02-25 Thread Daniel Doron
http://forum.xda-developers.com/showthread.php?t=1852621 On Saturday, February 21, 2015 at 1:48:57 PM UTC+2, Munesh Parmar wrote: > > Hello Android community > I am working android operating > system. I want to customize android operating system with my ow

[android-porting] AOSP image with Developer Options enabled by default

2015-03-12 Thread Daniel Doron
Hi, I would like to create an AOSP image where "Developer options" is enabled by default, usb debugging also enabled by default and always allowed. Is this possible? How can I do that? Thanks, Daniel. -- -- unsubscribe: android-porting+unsubscr...@googlegroups.com web

[android-porting] Re: AOSP image with Developer Options enabled by default

2015-03-15 Thread Daniel Doron
Thanks Glenn, that is what I did, change the code in packages/apps/Settings/src/com/android/settings/DevelopmentSettings.java and some other places... Daniel. On Thursday, March 12, 2015 at 5:21:48 PM UTC+2, Glenn Kasten wrote: > > The source code for Settings is at > packages/apps

[android-porting] Re: Surfaceflinger and openGL ES

2015-04-12 Thread Daniel Doron
check this out: https://charleszblog.wordpress.com/category/android-2/graphics-android/surfaceflinger/ Daniel. On Thursday, April 9, 2015 at 9:59:52 PM UTC+3, Eyal Bellisha wrote: > > Hi, > I have a few questions regarding the SurfaceFlinger: > 1) I understand that the app w

[android-porting] Re: Android M Power Button - AOSP

2016-05-31 Thread Daniel Doron
tion()); mItems.add(new MyPowerAction()); } . I could be wrongbut I hope it helps.... Daniel. On Thursday, May 12, 2016 at 5:38:20 PM UTC+3, Vivekanand Elango wrote: > > Hi, > > I'm trying to modify AOSP for my firmware. I want to intercept PowerButton > l

[android-porting] Replacing services.jar in stock nexus 5X with AOSP compiled version

2016-05-31 Thread Daniel Doron
this possible? Am I missing something? Thanks, Daniel. -- -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting --- You received this message because you are subscribed to the Google Groups "android-porting" group. To u

[android-porting] Re: Replacing services.jar in stock nexus 5X with AOSP compiled version

2016-06-05 Thread Daniel Doron
Figured it out. CLOSED. On Tuesday, May 31, 2016 at 5:50:14 PM UTC+3, Daniel Doron wrote: > > I made some changes to framework/base/services and compiled services > (AOSP tree source: 6.0.1_r43) > > I then tried replacing on a stock nexus 5X (6.0.1 - bullhead-mtc19t) > t

[android-porting] Re: Adding a custom system service: compiling hardware.so

2016-08-28 Thread Daniel Doron
I forked linaro's github repo and made adaptations for Android 6 (Marshmellow) sometime ago https://github.com/lightydo/framework_base_joffee https://github.com/lightydo/hardware_joffee On Monday, August 15, 2016 at 9:47:51 PM UTC+3, Steven Leighton wrote: > > In case this helps any readers

[android-porting] Battery Diver - SOC and Temperature not updated

2018-05-16 Thread Daniel B
Hello, i try to port a battery driver to the odroid c2 running android. I want to make my own device, which is powered from battery and android should show the remaining soc, temperature and so on. I downloaded the kernel source from the hardkernel github repository: odroidc2-3.14.y-android-m <

[android-porting] Re: Battery Diver - SOC and Temperature not updated

2018-06-13 Thread Daniel B
Nobody knows where to start searching for this issue? Am Mittwoch, 16. Mai 2018 20:33:51 UTC+2 schrieb Daniel B: > > Hello, > > i try to port a battery driver to the odroid c2 running android. > I want to make my own device, which is powered from battery and android > should

[android-porting] Re: Failed to compile frameworks/av/services/audiopolicy/enginedefault code if I keep in device/generic/

2019-02-26 Thread Daniel Navarro
El lunes, 25 de febrero de 2019, 8:00:27 (UTC-7), Veera escribió: > I am trying to understand the Android 9 Compilation process and for that as > an example, I moved frameworks/av/services/audiopolicy/enginedefault to other > folders lets say, device/generic/arm64/enginedefault. I made the proper

[android-porting] Re: Audio support

2008-12-14 Thread Daniel Youn
Hi, gougou I am also using WM9713 codec but I can't get sound driver working. After reading this mailling list, I've check the following: 1) get source for /platform/external/alas-lib 2) get source for /platform/hardware/alsasound 3) modified BoardConfig.mk like this #HAVE_HTC_AUDIO_DRIVER := tr

[android-porting] Re: Audio support

2008-12-16 Thread Daniel Youn
system/core/init/devices.c file actually didn't modified at all. ( I don't know why ) So, I manually modified system/core/init/devices.c file. And this time, PCMC0D0 and other device files located in /dev/snd. As a result, now I can here sound on my android. :) Thanks for advice. Regards. D

[android-porting] Re: about android touch pannel

2008-12-17 Thread Daniel Youn
I/KeyInputQueue( 45): Size: unknown values I/WindowManager( 45): Input configuration changed: { scale=1.0 imsi=0/0 locale=en_US touch=3 key=2/2 nav=3 orien=2 } I can't figure out what's wrong with my touch device. Is there any point to check? Any advice would be helpful. Thanks in advance.

[android-porting] About IMEISV request on libreference-ril

2009-04-28 Thread Daniel Baeyens
f the GSM module? or the library one? Does it matters? or can I choose randomly a pair of numbers? Thanks and kind regards, -- Daniel Baeyens Warp Networks S.L. - http://www.warp.es --~--~-~--~~~---~--~~ unsubscribe: android-porting+unsubscr...@googlegroups.com we

[android-porting] Explanation about +CNMI parameters?

2009-04-29 Thread Daniel Baeyens
S_FROM_SIM)... In case I'm mistaken, could someone explain a little bit how Android works for unsolicited SMS notifications (or SMS in general) and what a new device should do to imitate the original behaviour? Thank you and kind regards, -- Daniel Baeyens Warp Networks S.L. - htt

[android-porting] Re: About IMEISV request on libreference-ril

2009-04-29 Thread Daniel Baeyens
've seen, there is no standard command to request the IMEISV, but I have found the correct one for the module I'm using for testing. > Best regards, Thanks and kind regards, >  Mikkel > > On Apr 28, 11:35 am, Daniel Baeyens wrote: >> Hi, >> >> I'm play

[android-porting] Re: Explanation about +CNMI parameters?

2009-04-29 Thread Daniel Baeyens
Hi Nimit, On Wed, Apr 29, 2009 at 12:40 PM, Nimit Manglick wrote: > Hi Daniel, > > +CNMI command is basically used to set the SMS settings to the baseband. > > It lets you to inform the baseband about ur platform specific SMS > requirements like SMS mode ( whether u r interes

[android-porting] Re: Explanation about +CNMI parameters?

2009-04-29 Thread Daniel Baeyens
ed the separate channels? Also, I've seen that SMS URC comes with full data depending +CNMI parameters... that why everything started :) Thank you very much for your help. best regards, On Wed, Apr 29, 2009 at 1:19 PM, Nimit Manglick wrote: > Hi Daniel, > > I dnt think that an Incoming

[android-porting] Re: how to build the pdk_docs target to generate the document of android

2009-05-04 Thread Daniel Baeyens
(Method.java:585) >> > at com.sun.tools.javadoc.DocletInvoker.invoke >> > (DocletInvoker.java:269) >> > at com.sun.tools.javadoc.DocletInvoker.start >> > (DocletInvoker.java:143) >> > at com.sun.tools.javadoc.Start.parseAndExecut

[android-porting] Setting a default route

2009-05-06 Thread Daniel Baeyens
ry to make ping or a network connection, I get a "Network is unreachable" error. Am I doing something wrong? How could I do this? Thank you! Kind regards, -- Daniel Baeyens Warp Networks S.L. - http://www.warp.es --~--~-~--~~~---~--~~ unsubscribe: androi

[android-porting] Re: RIL implementation

2009-05-06 Thread Daniel Baeyens
Hi Nimit (and all the list), How did you solve this problem? I think now I'm facing a similar problem. I'm trying to test a 3G USB dongle with Android. For this: - I've needed to discard Android emulator because it doesn't allow to attach USB devices with -qemu -usb -usbdevice parameters (anyon

[android-porting] Re: Setting a default route

2009-05-06 Thread Daniel Baeyens
On Wed, May 6, 2009 at 5:45 PM, Daniel Baeyens wrote: > Hi, > > I'm trying to set up a default gateway through a network interface. > I've set up my device (netcfg up && ifconfig ), > and then I have tried to: > > route add default dev > > If i launch "

[android-porting] Re: RIL implementation

2009-05-07 Thread Daniel Baeyens
Thu, May 7, 2009 at 12:02 PM, David Turner wrote: > > > On Wed, May 6, 2009 at 11:00 AM, Daniel Baeyens > wrote: >> >> Hi Nimit (and all the list), >> >> How did you solve this problem? >> >> I think now I'm facing a similar problem. I'm tr

[android-porting] Re: RIL implementation

2009-05-07 Thread Daniel Baeyens
Hi, On Thu, May 7, 2009 at 1:37 PM, David Turner wrote: > On Thu, May 7, 2009 at 12:23 PM, Daniel Baeyens wrote: >> >> Hi, >> >> Thanks for the info >> >> -radio already worked perfect :D . Previously I have been using this >> parameter for testi

[android-porting] Re: RIL implementation

2009-05-07 Thread Daniel Baeyens
Hi again, On Thu, May 7, 2009 at 2:59 PM, Daniel Baeyens wrote: > Hi, > > On Thu, May 7, 2009 at 1:37 PM, David Turner wrote: >> On Thu, May 7, 2009 at 12:23 PM, Daniel Baeyens wrote: >>> >>> Hi, >>> >>> Thanks for the info >>> &