[android-developers] Re: Can we detect swipe or long press by starting a baground Service in Android

2012-10-27 Thread Martin Krischik
Am Freitag, 26. Oktober 2012 10:00:25 UTC+2 schrieb nitin gupta:

 Can we detect swipe or long press by starting a  Service in Android
 so if service is running i can detect swipe or long press anywhere .
 if yes plz sort out .


No — Services can't do any GUI interaction. And it is good this way. 

Martin

-- 
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] Re: Issue building project which uses library project

2012-10-27 Thread Martin Krischik


Am Freitag, 26. Oktober 2012 18:44:27 UTC+2 schrieb Ab:

 I found many postings concerning this error, but none of the solutions 
 worked for me.

 I have project A, B, and C. Projects A and B are marked as library 
 projects, project B imports project A as a library, and project C imports 
 project B. When running project C from eclipse, I get the below error.
  

 java.lang.IllegalArgumentException: already added: projectA/R;

  

 Upon investigation, the generated R files for projects A and B are 
 contained in the jar file create for project B, which is included in 
 project C's android dependencies. Also, projects C contains R files for 
 both project A and project B in its /gen folder.

 I assume this is causing the error, the R files appear twice on the 
 classpath because they are in the android dependencies and the gen folder. 
 If this is the cause, is there any way to fix it?

Your Library should use a different package name then everything should be 
ok. Apart from that: I use Maven (and IntelliJ IDEA) for building Android 
and there libraries work a lot better. Just because Google suggest Eclipse 
it does not mean it is the best solution for Android development ;-).

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

Re: [android-developers] Re: Can we detect swipe or long press by starting a baground Service in Android

2012-10-27 Thread nitin gupta
https://github.com/t0mm13b/TouchSoftly
can  we use this trick having transparent layout .



On Sat, Oct 27, 2012 at 12:13 PM, Martin Krischik 
krisc...@users.sourceforge.net wrote:

 Am Freitag, 26. Oktober 2012 10:00:25 UTC+2 schrieb nitin gupta:

 Can we detect swipe or long press by starting a  Service in Android
 so if service is running i can detect swipe or long press anywhere .
 if yes plz sort out .


 No — Services can't do any GUI interaction. And it is good this way.

 Martin

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




-- 
*BEST REGARDS
*NITIN GUPTA
9311156800

-- 
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] can adb server connect to adbd on the same device?

2012-10-27 Thread mylz
In normal usage, adb works on host, like PC, and adbd works on device. They 
communicate with each other by USB or TCP mode.
Now my question is that I compiled the adb for arm,and push it into the 
device, where adbd exists, how can adb communicates with adbd?

many THANKS for anyone who can help me.:)
 

-- 
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 do if User focussed on Edittext, menus should be displayed?

2012-10-27 Thread Meena Rengarajan


My needs : If i click or focussed on EditText, it should call Menus . In 
Menus, i wanna create two options. That is, normal writing and keyboard 
writing. 

If user selects keyboard writing, it looks like Android Keyboard. Should be 
able to type it from keyboard. And next one, normal writing. This is like 
normal.

In Menus, if user selects normal writing then one screen should appear when 
it is clicked like MS-Paint application . With pencil , user should be able 
to write like we'll almost write in a paint application. 

I am new to Android and learning though !

In my code, where should i do all the Functionalities of Menus ?

How could i do this ? Any helps or suggestion greatly appreciated !

And this is my Code :

else if(q.trim().equals(A))

{
fillUp=new EditText(context);
fillUp.setOnClickListener(new View.OnClickListener() {public void onClick(View 
arg0) {
 }});
fillUp.setBackgroundResource(R.drawable.option);
fillUp.setId(9);
fillUp.setOnCreateContextMenuListener(new OnCreateContextMenuListener() {public 
void onCreateContextMenu(ContextMenu arg0, View arg1,ContextMenuInfo arg2) {}});
fillUp.setOnFocusChangeListener(new View.OnFocusChangeListener() {public void 
onFocusChange(View v, boolean hasFocus) {Toast.makeText(context, Focused, 
Toast.LENGTH_LONG).show();if (hasFocus) {
context.getWindow();
context.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
}
}
});
fillUp.setLayoutParams(Rl);
fillUp.setGravity(Gravity.CENTER); 
fillUp.setId(9);
compLayout.addView(fillUp);

-- 
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] Re: Display of Multiple pages in ViewPager, Position Not Updating

2012-10-27 Thread bkadirbeyoglu
Hasn't anybody implemented it? I'd really like to use this component in my 
app.

Thanks in advance.



On Thursday, October 25, 2012 4:02:51 PM UTC+3, bkadirbeyoglu wrote:

 Hi,

 I am trying to implement Dave Smith's PagerContainer to show multiple 
 pages in my viewpager. I have implemented an on-click listener to display 
 the page numbers, but when I click on the left page, clicked on item 2 
 message is shown (item 0 would be correct). If I click on the middle and 
 the right pages, correct messages are displayed, item 1 and item 2 
 respectively. I've lalso attached an image to describe the problem. How can 
 I fix this? Thanks in advance.

 The code snippet is given below:

  @Override
 public Object instantiateItem(ViewGroup container, final int 
 position) {
 TextView view = new TextView(PagerActivity.this);
 view.setText(Item +position);
 view.setGravity(Gravity.CENTER);
 view.setBackgroundColor(Color.argb(255, position * 50, 
 position * 10, position * 50));

 
 view.setOnClickListener(new View.OnClickListener() {
 
 public void onClick(View v) {
 
 Toast.makeText(PagerActivity.this, clicked on Item  + 
 String.valueOf(position), 1000).show();
 
 }
 });
 
 container.addView(view);
 return view;
 }


 --


 pager.setOffscreenPageLimit(adapter.getCount());

 pager.setPageMargin(15);

 pager.setClipChildren(false);


 -



-- 
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] Re: Is it legal to implement APK's silent installation for commercial use?

2012-10-27 Thread Nitin Sethi
It certainly possible if your rivals has got into some kind of agreement 
with the OEM(s) to sign their app with the system key.

On Thursday, 25 October 2012 16:00:50 UTC+5:30, alex kyo wrote:

 Download and install apps from google play without prompt.
 I know there are only 2 ways to achieve that, sign the 3rd party app with 
 a system signature or root the device.
 But I think both will cause security trouble and neither will be 
 acceptable to the end user.

 My question is 
 Is it LEGAL to implement APK's silent installation for commercial use?

 I was told that our rival company made it recently.
 And they prepare to release their service next month.

 Does google have any legal regulation on that?




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

Re: [android-developers] How to do if User focussed on Edittext, menus should be displayed?

2012-10-27 Thread Satya Komatineni
Meena,
I haven't tried it. But a view seem to have a public method called
showConextMenu(). So you will set up a context menu for your control
and call showContextMenu() on focus grab. (My theory but try it out)

But more importantly, you may need to go in the direction of writing
your own input method for simulating keyboard input. Like the voice
does. So painting can be treated as another input method and register
method and see how that input method is enabled.

You may have to check literature on how to write your input methods.

http://twitter.com/SatyaKomatineni
http://satyakomatineni.com/android/training
http://satyakomatineni.com
http://androidbook.com

On Sat, Oct 27, 2012 at 5:34 AM, Meena Rengarajan
meenasoft...@gmail.com wrote:
 My needs : If i click or focussed on EditText, it should call Menus . In
 Menus, i wanna create two options. That is, normal writing and keyboard
 writing.

 If user selects keyboard writing, it looks like Android Keyboard. Should be
 able to type it from keyboard. And next one, normal writing. This is like
 normal.

 In Menus, if user selects normal writing then one screen should appear when
 it is clicked like MS-Paint application . With pencil , user should be able
 to write like we'll almost write in a paint application.

 I am new to Android and learning though !

 In my code, where should i do all the Functionalities of Menus ?

 How could i do this ? Any helps or suggestion greatly appreciated !

 And this is my Code :

 else if(q.trim().equals(A))

 {
 fillUp=new EditText(context);
 fillUp.setOnClickListener(new View.OnClickListener() {
 public void onClick(View arg0) {
  }
 });
 fillUp.setBackgroundResource(R.drawable.option);
 fillUp.setId(9);
 fillUp.setOnCreateContextMenuListener(new OnCreateContextMenuListener() {
 public void onCreateContextMenu(ContextMenu arg0, View arg1,ContextMenuInfo
 arg2) {
 }
 });
 fillUp.setOnFocusChangeListener(new View.OnFocusChangeListener() {
 public void onFocusChange(View v, boolean hasFocus) {
 Toast.makeText(context, Focused, Toast.LENGTH_LONG).show();
 if (hasFocus) {
 context.getWindow();
 context.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
 }
 }
 });

 fillUp.setLayoutParams(Rl);
 fillUp.setGravity(Gravity.CENTER);
 fillUp.setId(9);
 compLayout.addView(fillUp);

 --
 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 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] Re: Performance analysis of Android...

2012-10-27 Thread Jan Burse

ehsan azimzadeh schrieb:
 Feel free to contact me if you have any questions.
Any free preprint 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


Re: [android-developers] Re: Can we detect swipe or long press by starting a baground Service in Android

2012-10-27 Thread Raghav Sood
If you overlay a transparent layout, then you'll consume all the touch
events, rendering anything below your app useless.

On Sat, Oct 27, 2012 at 12:30 PM, nitin gupta nitin0...@gmail.com wrote:

 https://github.com/t0mm13b/TouchSoftly
 can  we use this trick having transparent layout .



 On Sat, Oct 27, 2012 at 12:13 PM, Martin Krischik 
 krisc...@users.sourceforge.net wrote:

 Am Freitag, 26. Oktober 2012 10:00:25 UTC+2 schrieb nitin gupta:

 Can we detect swipe or long press by starting a  Service in Android
 so if service is running i can detect swipe or long press anywhere .
 if yes plz sort out .


 No — Services can't do any GUI interaction. And it is good this way.

 Martin

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




 --
 *BEST REGARDS
 *NITIN GUPTA
 9311156800

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




-- 
Raghav Sood
http://www.appaholics.in/ - Founder
http://www.apress.com/9781430239451 - Author
+91 81 303 77248

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

Re: [android-developers] Re: Performance analysis of Android...

2012-10-27 Thread Kristopher Micinski
+1, nobody's going to pay $31.00 for the IEEE XPlore link, (not
everyone is on a college campus!),

kris

On Sat, Oct 27, 2012 at 11:33 AM, Jan Burse janbu...@fastmail.fm wrote:
 ehsan azimzadeh schrieb:

 Feel free to contact me if you have any questions.
 Any free preprint 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

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


Re: [android-developers] Performance analysis of Android...

2012-10-27 Thread Kristopher Micinski
This belongs more appropriately on platform, I believe, as it deals
mostly with internals..

kris

On Sat, Oct 27, 2012 at 9:45 AM, ehsan azimzadeh
ehsan.azimza...@gmail.com wrote:
 Hi

 I recommend you to read our paper if you are studying about Dalvik VM and
 its Bytecodes. Feel free to contact me if you have any questions.

 Best Regards
 Ehsan

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


Re: [android-developers] Re: LVL suddently stopped working - returns only timeouts

2012-10-27 Thread Silvio Marano
I get another answer from the (un)assistance service

REQ  1143185470 
 Please make sure you are using the latest copy of the Licensing server. 
If you have not updated your code in a while, please upgrade to the latest 
version here: 
http://developer.android.com/guide/google/play/licensing/setting-up.html#download-lvl

If you are still having trouble, please run adb tool as described here:
http://developer.android.com/tools/help/adb.html 

After resolving any errors returned, please let us know if you are still 
having trouble. Include the bugreport (adb bugreport  ~/mybugreport.txt) 
into your reply to help us investigate the issue further.


In the next answer probably they tell me to restart the computer an try 
again. -_-

Is this a good assistance? An user reports a serious problem four times 
saying the test that they could do to see how the problem is in the license 
server and they continue to give standard answers without any control to 
the issue and totally ignoring the issue description...

No words. 


Il giorno sabato 27 ottobre 2012 00:25:22 UTC+2, Ian Ni-Lewis ha scritto:

 That sounds about right.
 Ian


 On Fri, Oct 26, 2012 at 1:13 PM, Silvio Marano:

 The ticket number? Is the number #1143185470 in the email subject?!

 Il giorno venerdì 26 ottobre 2012 22:05:26 UTC+2, Ian Ni-Lewis ha scritto:

 I'm not a Play Support engineer, nor am I going to make promises to 
 help--but I can tell you this: if you want to complain about the support 
 you're getting from our help form, you have to post the ticket number. 
 Otherwise there's no way for anyone to follow up on your complaint.
  

 On Fri, Oct 26, 2012 at 11:39 AM, Silvio Marano:

 I have already used this form three days ago... Their answer?

 Thank you for your email. Please note that we are unable to assist 
 with application development and testing questions.

 If you're looking for information regarding development issues, please 
 visit our Android Developer site

 I have tried to report again the issue but haven't answered anything.

 Totally absurd...
  

 Il giorno venerdì 26 ottobre 2012 19:52:07 UTC+2, Ian Ni-Lewis ha 
 scritto:

 This is the right answer. If you fill out the appropriate support form 
 (e.g. 
 http://support.google.com/googleplay/android-developer/bin/request.py?contact_type=publishing)
  
 and don't get an answer within about 3 business days, then you can ask 
 someone on this forum to escalate. Make sure you have your ticket number.

 In many cases, it's not google engineers who need to solve your 
 problem. It's one of the support teams that have access to change the 
 production database. That's why any engineer you talk to will steer you 
 to 
 the official forms first.


 On Fri, Oct 26, 2012 at 5:51 AM, Kostya Vasilyev kman...@gmail.comwrote:

 The official answer - use the official support channel:


 https://support.google.com/googleplay/android-developer/bin/answer.py?answer=136601

 This also helps, sometimes:


 http://support.google.com/googleplay/android-developer/bin/static.py?hl=enpage=known_issues.cs

 -- K


  2012/10/26 Silvio Marano: 
  There aren't others specific address to contact google engineers? 
 Since
  nobody of the people active in the forum seems have access to the 
 google
  license server management, is impossible to fix this issue without 
 Google
  intervention.
  I cannot re-publish the app with another package name saying to the 
 previous
  buyers I'm sorry LVL server doesn't works re-buy my app. In the 
 hope that
  the bug doesn't happen again.
 
  It's a shame.
 
 
  Il giorno venerdì 26 ottobre 2012 13:56:23 UTC+2, Kostya Vasilyev ha
  scritto:
 
  2012/10/26 Silvio Marano:
 
   Analogous problem... Another strange thing? With another package 
 name
   everything works. Seems that for some reason the LVL server 
 suddenly
   decided
   to not respond to specific package names.
  
   I have tried to contact Google with no success.
 
  That's ok, you'll get used to it.
 
  -- K
 
  --
  You received this message because you are subscribed to the Google
  Groups Android Developers group.
  To post to this group, send email to android-d...@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 post to this group, send email to android-d...@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




 -- 
 Ian Ni-Lewis
 Developer Advocate
 Android Developer Relations


  -- 
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-d...@googlegroups.com
 To 

[android-developers] Geocoder and Geocode Web Service availability/performance issues

2012-10-27 Thread Spiral123
Hi there...

I have a reasonably successful Android app that is heavily geo biased. 
 Within the app I use both the Geocoder class (getFromLocationName()) and 
also Maps API v3 geocoding search and the Maps API Geocode web service.

The reason I use both is because every couple of months the Android 
Geocoder class just goes AWOL and a group of my users endure horrible 
performance and variable responses to their queries so I need a backup. 
 Unfortunately its rarely the same group of users each time and doesn't 
seem to happen in a specific area.  I used to suspect it was problems with 
the carrier backend connecting to the Google servers or the users local 
data connection that was the issue.

It was never a huge problem as it seemed to usually resolve itself pretty 
quick or I could always ask them to swap to the web service as a backup.

Over the last few months though the problem seems to have become endemic - 
and it also seems to have spread to the web service.  It is causing me a 
lot of headaches and adverse feedback for my app.

I'm now suspecting that Google must be doing some sort of major overhaul of 
their infrastructure (at least in N America).  I have noticed that the map 
tiles seem to have been spruced up a bit and there is a new new 'sort of 
google' app Field Trip that appears to be a field trial for a new Android 
Maps API (about time too).

Has anyone else been experiencing similar disruption and/or does anyone 
have the inside track on what could be causing the problems?

Nick

(I cross-posted this note to the Google Maps API Web Services group)

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

Re: [android-developers] Is it legal to implement APK's silent installation for commercial use?

2012-10-27 Thread strazzere
Correct, you basically just need to request the proper auth tokens, then 
simulate the protocol being used the by Play store / web site.

Tim Strazzere

On Friday, October 26, 2012 7:41:54 PM UTC-7, Kevin TeslaCoil Apps wrote:

 I would guess that they simulate a user clicking INSTALL from the web 
 based Play Store. I believe this would be technically doable if they either 
 had the user login or had the users Google password. Then the Play Store 
 takes care of pushing the app to the device and installing it in the 
 background. There would still be the notification icon showing it has been 
 installed and hopefully users are weary of typing their Google password 
 into apps. It's likely that such a setup would violate one or more Play 
 Store policies, but I do not know. I think App Brain did something along 
 these lines at some point?

 -Kevin

 On Friday, October 26, 2012 4:54:28 AM UTC-5, alex kyo wrote:

 Thanks, Mark

 One thing I can definitely confirm is that they are not 
 device manufacturer.

 Suppose there is a google account(*ga*) which contains several apps.

 My guess is that they might register a stock device with the *ga* by 
 AccountManager 
 and then call the sync api (I don't know exactly what api will be here)

 Finally, after the device performed sync process, log 
 out programmatically 
 the apps will be remained and it looks like silent install.


 On Friday, October 26, 2012 4:00:24 PM UTC+9, Mark Murphy (a Commons Guy) 
 wrote:

 On Fri, Oct 26, 2012 at 2:45 AM, Kristopher Micinski 
 krismi...@gmail.com wrote: 
  Or their company is actually TMobile... 

 Oh, true. A device manufacturer can do this stuff without a problem. I 
 was assuming that this was an SDK app, since this is a list for 
 developing SDK apps, but that may not have been a valid assumption. 

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

 _The Busy Coder's Guide to Android Development_ Version 4.2 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

[android-developers] Mysql Android

2012-10-27 Thread Richard Gaviria
Please can anybody help me with some example about connect MySql with
Android?

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

Re: [android-developers] Re: [Android LVL] Sporadic false negatives on client devices

2012-10-27 Thread Silvio Marano
Have you get any answer by Google Support?... I have tried many times to 
report this problem without success, and the staff give me only standard 
answer without read my messages and the LVL server doesn't respond to app 
checking and gives only timeouts 

Il giorno martedì 8 maggio 2012 13:31:40 UTC+2, Kostya Vasilyev ha scritto:

  Not specifically a NOT_LICENSED response, but I recently had two users 
 where the LVL check was consistently, repeatedly timing out.

 My LVL code is basically stock, based on next-to-last LVL version.

 Based on logcat traces (both users were kind enough to provide these), my 
 code was able to request Market license checks just fine, but there was no 
 answer of any kind within the standard 15 second timeout.

 Both users recently received official 4.0.* firmware upgrades, and both 
 have other devices with the same Google account configured in Market.

 Go figure.

 -- K

 08.05.2012 14:28, albnok написал: 

 I get this on my own app, also having LVL. Quite embarrassing to try to 
 demonstrate the app to a friend and then it occasionally says that my copy 
 is not licensed - I have purchased it (since it was published using a 
 different account.)


 On Monday, May 7, 2012 9:07:23 PM UTC+8, Florin wrote: 

 Hello, 

 I have an Android developer account and a couple of paid apps 
 published on the Market since a while now. I have decided to use 
 Android LVL for copy protection from the start on all of my apps, I 
 found it pretty straightforward to use so I told myself why not? extra 
 security is better than no security, right? 

 However, after almost one year since my apps have been out in the 
 wild, I keep getting from time to time unsatisfied customers which 
 after purchasing one app constantly get NOT_LICENSED replies from 
 Android licensing servers. And I'm not talking only about occasional 
 NOT_LICENSED caused either by lack of network coverage etc. but about 
 clients which try for days and days(yes, there are clients like this, 
 and they are right, since they paid for their apps!) and still get 
 NOT_LICENSED. 

 Now, here goes my questions: 
 1) For Android dev and apps publishers out there: have you noticed any 
 wave of false negatives complaints from your clients lately? The above- 
 mentioned symptom occurs in my case since the beginning, but since 2 
 weeks now it happens at a much higher frequency. 
 2) For any Google representative who might see this: are there any 
 kind of License Validation statistics on the Android Licensing server 
 side? Like for instance validation attempts per application, with 
 timestamp and Android Market client version and client ID(not email 
 for security reasons but something)?  And with some extra message 
 giving a reason for NOT_LICENSED?(apart the obvious didn't buy reason, 
 could there be others?) 
 I think this should be implemented at LVL level and not at app level 
 due to permissions requirement(an app implementing statistics would 
 definitely require network access which for some apps does not 
 justify). So, can we have access to these statistics? If not now, 
 maybe sometimes in the future? 

 Florin.

 -- 
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to 
 android-d...@googlegroups.comjavascript:
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com javascript:
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en 


 -- 
 Kostya Vasilyev

 

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

Re: [android-developers] Re: [Android LVL] Sporadic false negatives on client devices

2012-10-27 Thread Kostya Vasilyev
2012/10/28 Silvio Marano maranosil...@gmail.com:
 Have you get any answer by Google Support?...

I don't remember if I reported this issue to support -- I just think
it's useless. Personal opinion, you don't have to be so pessimistic
(or realistic?) as I am.

I have tried many times to
 report this problem without success, and the staff give me only standard
 answer without read my messages

Yep. Unless you contact them with a specific request (I understand
they do app transfers between accounts really well), it's about as
useful as running naked in the woods, shouting. Maybe less so.
Personal opinion again (haven't tried that last part).

Maybe their engineers can't fix those occasional LVL and purchasing
failures, and that's why support acts like this, who knows?

The volume of data is huge, their code complexity must be tremendous,
and they're always adding new features. Google hires the best of the
best of the best, but they're only human too.

-- K

 and the LVL server doesn't respond to app
 checking and gives only timeouts

 Il giorno martedì 8 maggio 2012 13:31:40 UTC+2, Kostya Vasilyev ha scritto:

 Not specifically a NOT_LICENSED response, but I recently had two users
 where the LVL check was consistently, repeatedly timing out.

 My LVL code is basically stock, based on next-to-last LVL version.

 Based on logcat traces (both users were kind enough to provide these), my
 code was able to request Market license checks just fine, but there was no
 answer of any kind within the standard 15 second timeout.

 Both users recently received official 4.0.* firmware upgrades, and both
 have other devices with the same Google account configured in Market.

 Go figure.

 -- K

 08.05.2012 14:28, albnok написал:

 I get this on my own app, also having LVL. Quite embarrassing to try to
 demonstrate the app to a friend and then it occasionally says that my copy
 is not licensed - I have purchased it (since it was published using a
 different account.)


 On Monday, May 7, 2012 9:07:23 PM UTC+8, Florin wrote:

 Hello,

 I have an Android developer account and a couple of paid apps
 published on the Market since a while now. I have decided to use
 Android LVL for copy protection from the start on all of my apps, I
 found it pretty straightforward to use so I told myself why not? extra
 security is better than no security, right?

 However, after almost one year since my apps have been out in the
 wild, I keep getting from time to time unsatisfied customers which
 after purchasing one app constantly get NOT_LICENSED replies from
 Android licensing servers. And I'm not talking only about occasional
 NOT_LICENSED caused either by lack of network coverage etc. but about
 clients which try for days and days(yes, there are clients like this,
 and they are right, since they paid for their apps!) and still get
 NOT_LICENSED.

 Now, here goes my questions:
 1) For Android dev and apps publishers out there: have you noticed any
 wave of false negatives complaints from your clients lately? The above-
 mentioned symptom occurs in my case since the beginning, but since 2
 weeks now it happens at a much higher frequency.
 2) For any Google representative who might see this: are there any
 kind of License Validation statistics on the Android Licensing server
 side? Like for instance validation attempts per application, with
 timestamp and Android Market client version and client ID(not email
 for security reasons but something)?  And with some extra message
 giving a reason for NOT_LICENSED?(apart the obvious didn't buy reason,
 could there be others?)
 I think this should be implemented at LVL level and not at app level
 due to permissions requirement(an app implementing statistics would
 definitely require network access which for some apps does not
 justify). So, can we have access to these statistics? If not now,
 maybe sometimes in the future?

 Florin.

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-d...@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


 --
 Kostya Vasilyev

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

Re: [android-developers] how to create voice chat program using sip in android?

2012-10-27 Thread Dinesh kumar
Use Csipsimple which is a open source project

On Fri, Oct 26, 2012 at 3:53 PM, Tom arasi...@gmail.com wrote:

 Hi,

 if anybody knows to create voice chat program using sip in android.pleas
 share with me

 Thanks,

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