[android-developers] Re: How to add bullet points to the 'What's New' section?

2013-05-20 Thread Jokin Cuadrado
copy and paste the bullet character that you want from character map and 
voila! 

On Monday, May 20, 2013 11:26:07 AM UTC+2, reaktor24 wrote:

 Hi

 I saw some apps on the play store use bullet points in their 'What's New' 
 section and I was just wondering how do I do that? I though it may use the 
 li/li HTML code but that didn't seem to work. Anyone know? Cheers.

 Steve


-- 
-- 
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
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] some help with an stack trace

2013-02-14 Thread Jokin Cuadrado
I rolled and update of an app, and acra now it's reporting some crashes. I 
tried to search what's happening but i find nothing relevant. It seems that 
sometimes it doesn't find the analytics library and it's AnalyticsReceiver, 
but there's also a reference to com.google.android.maps which I don't 
understand why is there.  May be it's because the maps library it's not 
installed and the AnalyticsReceiver it's deceiving me?

Thanks in advance. 


java.lang.RuntimeException: Unable to instantiate receiver 
com.google.analytics.tracking.android.AnalyticsReceiver: 
java.lang.ClassNotFoundException: 
com.google.analytics.tracking.android.AnalyticsReceiver in loader 
dalvik.system.PathClassLoader[/system/framework/com.google.android.maps.jar:/data/app/com.my.app-2.apk]
at android.app.ActivityThread.handleReceiver(ActivityThread.java:2789)
at android.app.ActivityThread.access$3200(ActivityThread.java:125)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2083)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:123)
at android.app.ActivityThread.main(ActivityThread.java:4627)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:521)
at 
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:876)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:634)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.ClassNotFoundException: 
com.google.analytics.tracking.android.AnalyticsReceiver in loader 
dalvik.system.PathClassLoader[/system/framework/com.google.android.maps.jar:/data/app/com.vocento.pisos-2.apk]
at dalvik.system.PathClassLoader.findClass(PathClassLoader.java:243)
at java.lang.ClassLoader.loadClass(ClassLoader.java:573)
at java.lang.ClassLoader.loadClass(ClassLoader.java:532)
at android.app.ActivityThread.handleReceiver(ActivityThread.java:2780)
... 10 more
java.lang.ClassNotFoundException: 
com.google.analytics.tracking.android.AnalyticsReceiver in loader 
dalvik.system.PathClassLoader[/system/framework/com.google.android.maps.jar:/data/app/com.my.app-2.apk]
at dalvik.system.PathClassLoader.findClass(PathClassLoader.java:243)
at java.lang.ClassLoader.loadClass(ClassLoader.java:573)
at java.lang.ClassLoader.loadClass(ClassLoader.java:532)
at android.app.ActivityThread.handleReceiver(ActivityThread.java:2780)
at android.app.ActivityThread.access$3200(ActivityThread.java:125)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2083)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:123)
at android.app.ActivityThread.main(ActivityThread.java:4627)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:521)
at 
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:876)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:634)
at dalvik.system.NativeStart.main(Native Method)

-- 
-- 
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
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Re: Permanent socket connection drains battery

2010-07-16 Thread Jokin Cuadrado
the best and easier way i can figure is to use the Android Cloud to
Device Messaging service, using the underlying google sync connection
that it's already running.

http://code.google.com/android/c2dm/index.html

You can see also the chrometophone extension code to see a working
implementation: http://code.google.com/p/chrometophone/

This has a drawback, it only works on 2.2 devices. If you need to work
without the google assistance, you have to do something  like the
google sync client does in the device, and i think that it's not part
from the android open source, so you can't see the code. As far as I
know, it works also with a service, opening a connection, but it's a
special kind of connection  because it has a long timeout, and it let
the device to go to sleep, wakening it when it receive a response. It
has also some alarms to reopen the connection if it is closed.

I have found this blog post that explain a lot better and have some
code examples:
http://devtcg.blogspot.com/2009/01/push-services-implementing-persistent.html




On 15 jul, 15:41, Namrata puranik.namr...@gmail.com wrote:
  Do you really need to have a socket open at all times?

 yes, my application is based on push technique for which I always need
 to keep it open

 only keep the socket open while the user is actually using the application.

 yup I am doing it. Actually the fuctionality of app includes
 minimization of app and still listening to server push.

 On Jul 15, 6:24 pm, Miguel Morales therevolti...@gmail.com wrote:



  Do you really need to have a socket open at all times?  Why not
  periodically check the server using an Alarm, or only keep the socket
  open while the user is actually using the application.  Also, any loop
  will drain your battery, you might try sleeping at the end of it.

  On Thu, Jul 15, 2010 at 5:39 AM, Namrata puranik.namr...@gmail.com wrote:
   Thanks Mark..

   On Jul 15, 5:06 pm, Mark Murphy mmur...@commonsware.com wrote:
   On Thu, Jul 15, 2010 at 7:56 AM, Namrata puranik.namr...@gmail.com 
   wrote:
any answer?..This is blocking issue for me as it drains batter in
couple of hours.

   You may wish to watch the C2DM presentation from Google I|O 2010, as
   they provide a few hints on how they try to minimize battery usage.

   --
   Mark Murphy (a Commons 
   Guy)http://commonsware.com|http://github.com/commonsguyhttp://commonsware.com/blog|http://twitter.com/commonsguy

   _Android Programming Tutorials_ Version 2.9 Available!

   --
   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

  --http://developingthedream.blogspot.com/,http://diastrofunk.com,http:/..., 
  ~Isaiah 55:8-9

-- 
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