[android-developers] How to support WAP PUSH SI/SL/CO by OEMs

2011-11-02 Thread xiaodong mao
By default, Mms apk in Original Android did not support SI/SL/CO Wap
push receive/display/management. if OEM want to support it, what
should they do??

I found for SI/SL/CO Wap push, seems the broadcasting intent only
contain the Raw Push content, Does Android framework provide some
publich API to decoding the SI/SL/CO Raw Push content to quickly
retrieve the useful string based SI/SL/CO information?

-- 
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 this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] How to Add OMA Download support in Browser by OEMs

2011-11-02 Thread xiaodong mao
When I use originally android browser to download Oma dd file, seems
it did not support, and moto, htc' phone' browser can recognize the
Oma dd file, and process based on oma download rule.

My question is does android originally support Oma download engine in
framework and public the API? when OEM add OMA Download in the
Browser, should them only need focus on the UI, or they also need
implement the OMA Download protocol by theirself?

-- 
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 this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] How to dynamic Plug-in JAR in Android system

2011-11-02 Thread xiaodong mao
I meet a problem for JAR in android.

1.  I create a new folder and add some java file and .mk file to
compile the JAR file, it can successfully compiled and output into /
system/frameworks.
2.  Then, in my Client apk, I just import the package name, and found
it compiled failed, cannot found the package, then, I add
LOCAL_JAVA_LIBRARIES := jar name in my Client apk’s mk file. Now it
can compiled successfully.
3.  BUT, in runtime, VM still occurred exception that can not found the
Class, and the JAR file already in system/framework/
4.  Then, I create a xml file, contain below info to register jar, and
add it into system/etc/permissions.  BUT, in run time, still VM said
class not found.

permissions
library name=
file=/system/framework/xxx.jar /
/permissions


5. at last, i found i must add use-libary in my androidmanifest.xml,
then it can work.

What is the matter, per my opinion, in runtime, the xml in etc/
permissions and the jar in /system/frameworks already declare the
JAR's exist in the system, Why must i add use libary in my apk's
manifest file??

meanwhile, is it possible to make my Client can compile successfully
without add the LOCAL_JAVA_LIBRARIES := jar name in my mk file??
just like i import the SDK API, i never need add the
LOCAL_JAVA_LIBRARIES :=  in my mk file.

Thx a lot

-- 
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 this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en