[android-developers] How to make sure an app is eligible to use REQUEST_IGNORE_BATTERY_OPTIMIZATIONS permission?

2016-09-30 Thread Lawrence Law
Our app is a location app that will run in background and report user’s locations to server so that his members can track them. In Android 6, because of the Automatic Battery Optimisation (Doze mode), our app couldn’t report user’s location to server because the Data Connection was

[android-developers] Can Android support NTFS-3G file system?

2010-03-15 Thread Lawrence
Dear all, I tried to make Android to support NTFS file system. First, I modified menuconfig in kernel, like File systems --- * FUSE (Filesystem in Userspace) support DOS/FAT/NT Filesystems --- [*] NTFS write support So, I can mount the sdcard of NTFS but it can't be

[android-developers] WebView email support

2009-11-17 Thread Lawrence
2.0 it just returns Unsupported action - that action is not currently supported message. How can I change this so when I click on the email address, on a web page, it takes me to email with the address I clicked on placed in the to: box? Thanks in advance, Lawrence -- You received this message

[android-developers] Re: Android 2.0 SDK is here!

2009-11-10 Thread st...@lawrence-enterprise
Now just waiting for Android 2.0 Firmware for the Google Dev 1 Phone... So can actually test apps. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from

[android-developers] Re: Failure [INSTALL_FAILED_MISSING_SHARED_LIBRARY]

2009-10-02 Thread Lawrence
specifies a need for the maps.jar, other application will have maps.jar available to them? Where are the specification for how libraries and resources are shared out of the sandbox? Thank you for any help, Lawrence On Sep 4, 9:21 am, Marco Schmitz netzprofi.ma...@googlemail.com wrote: maybe its just

[android-developers] how to get the network camped event

2009-05-07 Thread Lawrence
Hi, i am wondering how to get noticed once the phone has been successfully registered to a valid network. Anybody has a point on this? Thanks, Lawrrence --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: android system make. error 45

2009-05-07 Thread Lawrence Wu
Hi Andrew, Not only lack # symbole but also lack parameter type. So need to modified it to be following: * further and longer, when used with {...@link #setFinalX(int)} or {...@link #setFinalY(int)}.

[android-developers] Re: android system make. error 45

2009-05-07 Thread Lawrence Wu
This problem is caused by not only lack # symbol but alos lack the parameter data type. So Scroller.java, line 365 should be modified to be following: --- * further and longer, when used with {...@link #setFinalX(int)} or

[android-developers] Re: how to get the network camped event

2009-05-07 Thread Lawrence
Any guy can kindly give me a point? On May 7, 5:06 pm, Lawrence lejie.zh...@gmail.com wrote: Hi,    i am wondering how to get noticed once the phone has been successfully registered to a valid network. Anybody has a point on this?    Thanks, Lawrrence

[android-developers] where is APN setting stored in emulator/device?

2009-04-24 Thread Lawrence
Dear all, I am wondering where is APN setting stored in emulator/devices. and what's its file format, in xml or anything else? Thanks, Lawrrence --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: SystemProperties.get()/set()

2009-04-02 Thread Lawrence
Anybody has any idea on this? On 4月1日, 下午10时43分, Lawrence lejie.zh...@gmail.com wrote: Hi all, In case of reading/setting properties defined in /default.prop /system/build.prop /system/default.prop /data/local.prop, i am finding many source code in android release are using

[android-developers] SystemProperties.get()/set()

2009-04-01 Thread Lawrence
Hi all, In case of reading/setting properties defined in /default.prop /system/build.prop /system/default.prop /data/local.prop, i am finding many source code in android release are using SystemProperties.get()/set() for this purpose. But i am also finding that SystemProperties is not published

[android-developers] how to preload an android application

2009-03-05 Thread Lawrence
Hi, i am now wondering how to preload an application. Does it work if only place it under /system/app/? Thanks, Lawrence --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] how to preload an application

2009-03-05 Thread Lawrence
Dear all, i am finding all android preloaded applications are located under / system/app/. So i am wondering if there is way that we can preload our own applications. Does it work that we just placed an app under / system/app/? --~--~-~--~~~---~--~~ You

[android-developers] Re: how to preload an application

2009-03-05 Thread Lawrence
Anybody has some idea on this? On 3月5日, 下午3时55分, Lawrence lejie.zh...@gmail.com wrote: Dear all, i am finding all android preloaded applications are located under / system/app/. So i am wondering if there is way that we canpreloadour own applications. Does it work that we just placed

[android-developers] Re: how to preload an application

2009-03-05 Thread Lawrence
After we make build, kernel, system.img and userdata.img are generated. My question is, i wanna unpack system.img, and put my apk directly to this image. is it possible, and what is the step? Thanks, On 3月6日, 上午10时12分, Mark Murphy mmur...@commonsware.com wrote: Lawrence wrote: Anybody has

[android-developers] Re: TabHost and New Activities

2008-11-30 Thread Lawrence
? Thanks. -- Lawrence Samantha On Nov 23, 3:52 pm, g1bb [EMAIL PROTECTED] wrote: Eureka! I got this to work by taking a look at this sample project:http://www.mail-archive.com/android-developers@googlegroups.com/msg06... Set my class that extends TabActivity as the main layout. Thanks