[android-developers] Re: JNI Error : local reference table overflow (max=512) in ICS android version

2012-06-18 Thread Subramanya Somayaji
http://code.google.com/p/android/issues/detail?id=20686 -- 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] Re: How to replace GLSurfaceView with TextureView in Android Ice Cream Sandwich?

2012-06-18 Thread PcALeX
Hi, I am working on the similar function at camera, currently I am using GLSurfaceView and I want to replace it to TextureView. I follow the sample code that was provided form Romain Guy and I can render a rectangle with my shader, but the surfacetexture that store camera frame data seems

[android-developers] First App on an Android - CalDAV4j

2012-06-18 Thread bibble_235
Hi all, I am writing my first App on an android and would like some help. I wanted to use the library CalDav4j. I have compiled my code but it will not work.(Surprise). I have been on Synbian and C++ so it may well be my java is lapse I downloaded the library (jar) and I am using *

Re: [android-developers] Programmatically delete a home-screen shortcut

2012-06-18 Thread Andrew
Romain, I believe I'm doing something simple wrong, the code below can install shortcut, but removal silently fails (no exceptions or errors in logs except that I see a single line mentioning that ActivityManager processed the call). Tested on Android 2.3.4 phone and on Android 4 tablet with

[android-developers] Adding compound components to a canvas

2012-06-18 Thread Akhilesh B
I have a Compound component (like spinner, which extends FrameLayout) and a view that draws a bitmap on to the screen using Canvas.. now i want to draw the Compound component and place it on the Canvas wherever the user touches. If I draw it as bitmap,do the functionality of the view

[android-developers] setTimeout during sleep mode causing frozen/hung WebView temporarily?

2012-06-18 Thread Aaron Pfeifer
Hey guys - I've encountered a bit of a strange WebView interaction that I can't seem to find reported anywhere either in this group or other help forums. I have a basic WebView loaded within an Android app that contains a call to setTimeout. This code looks something like:

[android-developers] Re: Android music player intent in jquery

2012-06-18 Thread Nobu Games
JQuery is JavaScript running in a web browser. You cannot start Android intents from there, unless there has been some magical update I am not aware of. What's wrong with just linking / redirecting to that MP3 or whatever as a download? I think first of all you should better describe your

Re: [android-developers] WebViewClient callbacks called too often

2012-06-18 Thread bigbigteam
I have the same behavior too, however, this is because i'm using a ViewFlipper, which has two webviews, one on the front and one on the background. The onPageFinished is called once for each of them. I don't expect this behaviour too, but still can't find any good solution. -- You received

[android-developers] Intent for saved attachment in GMail

2012-06-18 Thread kibitzerCZ
Hi, I develop an application that cooperates with mail applications. I use GMail 4.0.5 and noticed the following: When I'm in GMail, open a mail, press View in attachment field and choose my application, I receive an intent with content:// scheme. But from once I save the attachment on I keep

[android-developers] Store widget data short term

2012-06-18 Thread nicholas makarov
I am trying to write a widget that needs to store data for less than a minute. Afterwards, the data is completely useless. Because this needs to happen several times, the performance of SharedPrefs is unsuitable. Is doing this even possible? -- You received this message because you are

Re: [android-developers] Play Store hijacking focus after in-app purchase dialog

2012-06-18 Thread Anton Kaiser
Try disassembling comiXology and see how it works there. Am Donnerstag, 14. Juni 2012 03:12:07 UTC+2 schrieb kadmos: 1. When you tested your app on a handful of different devices, did the behavior you dislike persist across all of them? yes. 3 different ones. 2. When you tested a

[android-developers] Re: parsing html code into andriod page

2012-06-18 Thread Nobu Games
Are you talking about displaying an HTML page within your Android app? How about using WebViewhttp://developer.android.com/reference/android/webkit/WebView.html ? If you are actually talking about parsing an HTML page and generating native Android layouts with views based on the HTML code, I

[android-developers] Re: Help with App crackers

2012-06-18 Thread Nobu Games
This is very unfortunate but did you read the first comment on that piracy forum? Some member called agsoftware says: When I install it ask for license Google Licensing seems to work. By your description I was already fearing that they were able to crack that feature. Maybe you should

Re: [android-developers] Every few hours Eclipse + ADT runs out of resources...

2012-06-18 Thread Nobu Games
Hi I know this is an old post but I'm running across the very same problem with Eclipse every single day since I installed the latest SDK / plugin version. After about 3 to 4 hours of coding and debugging (on an actual device) the run process (for installing and starting the app) gets slower

[android-developers] Re: Where to save data on devices without an sdcard?

2012-06-18 Thread Nobu Games
What about showing an error message for making the user aware of that problem? Alternatively your app could also listen to ACTION_MEDIA_MOUNTED broadcasts. As soon as the external storage is available your app could perform pending write operations (or copy over files you temporarily stored in

[android-developers] Re: My Google Play app was suspended, suggestions?

2012-06-18 Thread Chris Emberton
You ever get a response to this? On Monday, May 14, 2012 7:43:12 PM UTC-4, jkasten wrote: My Google play app Calculator for Sony SmartWatch, with package ID com.kasten.sonysmartwatch.calc was suspended and removed from the Google play store on May 12 for Violation of the intellectual

[android-developers] Memory leak in GLSurfaceView tutorial

2012-06-18 Thread Gerhard Aigner
Hi! I noticed a memory leak in the GLSurfaceView tutorial (http://developer.android.com/resources/articles/glsurfaceview.html) Attached application leak overview (very simple): 1. Start TheLeakActivity via button press from LeakStarterActivity 2. TheLeakActivity uses the tutorial code to

[android-developers] Re: UTF-8 encoding and decoding

2012-06-18 Thread Nobu Games
As far as I know strings are by default UTF-8 on Android. So your easiest way out would be String.getBytes()http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/String.html#getBytes%28%29since the String class internally knows its proper encoding (which is UTF-8). If you have decoding

[android-developers] Re: adb shell command from java code

2012-06-18 Thread Nobu Games
Hi, you should take a look at WifiManager.getConfiguredNetworks()http://developer.android.com/reference/android/net/wifi/WifiManager.html#getConfiguredNetworks%28%29and

[android-developers] Re: java.lang.SecurityException: without permission android.permission.BIND_INPUT_METHOD only for =2.2

2012-06-18 Thread Chau Huh
Did you ever resolve this? I'm having the same problem as you but with a different permission. It works fine on an 4.0.3 emulator but not a 2.1 emulator. Thanks. On Tuesday, 3 April 2012 03:33:22 UTC-7, Vishal Trivedi wrote: I have this very unpeculiar exception.The thing is have i have this

[android-developers] pleasee help me

2012-06-18 Thread DiEla Arianto
how to anticipate unknown error : java.lang.nullpointerexception -- 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

Re: [android-developers] Help, eclipse does'nt show any errors, but app does'nt work on phone.

2012-06-18 Thread amj27
Did you mention the next activity that you wanted to see after the button click in the androidmanifest.xml file ,if not then it should fix your issue.. :) On Thursday, June 14, 2012 11:42:41 PM UTC+5:30, MagouyaWare wrote: It seems i implemented the OnClickListener correctly, my phone

[android-developers] Ho clean-up filesystem when remove an application

2012-06-18 Thread elio francesconi
Hi all, I'm wondering how cleaning up configuration and data stored into the filesystem, when a user removes an application. The scenario I'ld like to manage is: * user install the application * the application stores into filesystem (sdcard) data and config files * the user uninstall the

[android-developers] Permissions for System Apps (not in /data/system/packages.xml?)

2012-06-18 Thread Jason Meyer
Hi everyone, after doing a bit of research I've gotten very curious: Where are the permissions stored which were granted to apps installed in /system/app? I checked out my phone's packages.xml file (located in /data/system/ packages.xml). User apps stored in /data/app/ have perms, but none of

[android-developers] Re: ActionBar.setCustomView doesn't seem to work

2012-06-18 Thread Patrick Hammond
Ran into the same issue earlier but found a good working sample here: http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/app/ActionBarDisplayOptions.html Sample code: ... ActionBar ab = getActionBar(); ab.setCustomView(customView,

[android-developers] Re: Suspended android developer account

2012-06-18 Thread Lacroix -
Yesterday my google play developer's account was suspended/disabled. REASON FOR TERMINATION: Prior violations of the Content Policy and Developer Distribution Agreement by this or associated accounts as outlined in previous emails sent to the registered email address(es) of the Publisher

[android-developers] Searchbox in Listview: always the same result

2012-06-18 Thread Laire
Hello, when I use the serachbox in my Listview, i got everytime the same result. For Example: Car Flower Hate Love Water When I type f or h or l etc. the result is always Car. Main activity: http://pastebin.com/Qb6iiHFw DatabaseHandler: http://pastebin.com/F06c0CGk

[android-developers] Google just suspended / killed my developer account and don't let me to use my projects anymore

2012-06-18 Thread Lacroix -
Dear Community! Yesterday my google play developer's account was suspended/disabled. REASON FOR TERMINATION: Prior violations of the Content Policy and Developer Distribution Agreement by this or associated accounts as outlined in previous emails sent to the registered email address(es) of

Re: [android-developers] Re: android build from command line

2012-06-18 Thread Leo Jackson
Jags, Sounds like a build path error, make sure the build paths and the jars locations are correct. Regards, Leo On Thu, Jun 14, 2012 at 8:16 AM, Jags jag...@gmail.com wrote: i could dig further and see this error ERROR: Unknown option '--generate-dependencies' why would this come ? On

RE: [android-developers] Long press on the Google map secret?

2012-06-18 Thread nona sonta-1039
Date: Sun, 17 Jun 2012 05:56:11 -0700 From: entre...@gmail.com To: android-developers@googlegroups.com Subject: Re: [android-developers] Long press on the Google map secret? Please, see my code. I speak that method onLongClick does not work. why does not code work, i can not understand public

[android-developers] Adding a compound component to a canvas

2012-06-18 Thread mittu laxman
I have a Compound component (like spinner, which extends FrameLayout) and a view that draws a bitmap on to the screen using Canvas.. now i want to draw my Compound component on to the canvas. And i want to place that component wherever i wanted(means at the place the user touches). i

[android-developers] I need help me.

2012-06-18 Thread Lucianna Silva
Hello my people, I need help. I work with Education Online and my work is done in flash when I put on a platform called Moodle, the flash does not fuciona he is running in a loop in tablet Asus Android platform. I wonder how do I remove it and run. Thank you -- You received this message because

[android-developers] How do I get a list of active notifications?

2012-06-18 Thread Rick W.
I want to know in my background mode application whether my notification is wiped off the list. How do I get this information? The NotificationManager only has write methods? Thanks. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Platforms for In-app billing and downloadable content

2012-06-18 Thread Marius Muntean
Hello I'm currently developing a multiplayer card-game for Android. The game is played by selecting a card deck(or pack) and playing only with those cards (many themed card decks will be offered). Every card includes a date, a description and a unique ID and maybe a deck ID (we're still

RE: [android-developers] Re: Long press on the Google map secret?

2012-06-18 Thread nona sonta-1039
Date: Sun, 17 Jun 2012 22:39:48 -0700 From: entre...@gmail.com To: android-developers@googlegroups.com Subject: [android-developers] Re: Long press on the Google map secret? Please show code, that work with long click on Google Maps понедельник, 18 июня 2012 г., 9:32:42 UTC+4 пользователь

[android-developers] how to make an application that set auto-rotate/portrait/landscape orientations for each installed app?

2012-06-18 Thread Power Android
Hello, I want to make an application that have the ability to set auto-rotate/ portrait/landscape orientations for each installed application.I research on this and not found any necessary tutorial for this.How can i make an application like this? In my project i am successfully show the list of

[android-developers] Newbie confused about drawing

2012-06-18 Thread Karl Garrison
I'm new to Android development, and trying to figure out the best way to draw to the screen. I've created a class extending View, and overridden the onDraw method to do some of my own drawing on the Canvas passed to that method. Easy enough. My confusion is how I should get the Canvas to draw

[android-developers] video streaming UDP to android

2012-06-18 Thread Leonardo
Hi, I have an application that makes video stream to an internal network (192 ...) and I need to broadcast to all connected devices in the network. Since the players have found to only get android http stream, so does anyone know if there is any player who receives the video stream in udp

Re: [android-developers] Recover Certificate from APK

2012-06-18 Thread Raphael P.F.
Actually, you should have a fall back plan. It's easy to backup your key. On Thu, Jun 14, 2012 at 11:35 AM, Saurav to.saurav.mukher...@gmail.comwrote: Thanks Mark. You have always helped me out, now and in the past! I know that the encryption is irreversible, wanted to know if there is a

[android-developers] Sending messages to multiple applications

2012-06-18 Thread oscarml
Hi, I'd like to know which is the best way to send a signal to multiple client android applications. This is what I plan to do: I want to develop an android application, and run a process in a Apache server. Frecuently, based on server process results, I have to send a signal to everybody who

[android-developers] How to play youtube videos in background

2012-06-18 Thread snow69it
Hi, All: I am developing youtube player which can play in background as service. Because MediaPlayer class can play only 3gp, so I use webview and youtube api chromeless player. It works well in Activity, but not work in Service, because the player can't initialized in background. (When

[android-developers] Android app using webview causing The page cannot be displayed because an internal server error has occurred(Win/Tomcat)

2012-06-18 Thread jeff
We have an android app using webview to display a page called login.jsp. This same page authenticates a user, via a servlet, and forwards them to another page called index.jsp. It is in the index.jsp page where we get an error message that reads: The page cannot be displayed because an internal

[android-developers] 'android list target' complains tools\aapt.exe missing, and the target is empty

2012-06-18 Thread pengguang
Hi all, I have successfully built sdk for windows from android source code, and there are many files/images in sdk platform path. However, when run 'android -v list target' to display the target, sdk manager complains tools/aapt.exe is missing. I have traced this issue into sdk manager source

Re: [android-developers] image format for android games

2012-06-18 Thread Juan Barbosa
What engine are you using? Different engines support different formats. Secondly opengl may or may not care about the dimensions of the image you're using (usually opengl 1.x). If you could provide more details on what you're trying to do, I could provide you with more help. -Juan On Sat, Jun

[android-developers] Android image rotation using matrix

2012-06-18 Thread Numair Qadir
I 've a code on which everything worked fine( scaling and moving). Now i want to add rotation too, i tried using matrix.postRotate(getDegreesFromRadians(angle), mid.x, mid.y); but didn't work for me. my code is: public boolean onTouch (View v, MotionEvent rawEvent) { WrapMotionEvent event =

Re: [android-developers] Re: Eclipse Image Bug

2012-06-18 Thread Sam
Never heard of DroidDrawI'll have to check it out! 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] Need Help Android communication

2012-06-18 Thread neo
Hi all, I have developed an application about Wifi communication between Smartphone and PC.When I try to run my application on actual device and PC,this Error (no route to host) always exists.Could you tell me,how can I solve this problem and what is the real reason. regards neo -- You

[android-developers] Question on launching activity from notification

2012-06-18 Thread Yezersky
Hi, There's a questions when I try to launch a activity from notification. The activity's task is on the background, if I add singleTask on the activity's launch mode, after touch notification, the activiy's task go back to foreground, and the activity is same as before, but if I do not add

[android-developers] Issue in using a permission which is defined by an app which gets installed after my app?

2012-06-18 Thread shibz
Hi, I'm facing an issue where my app is using a permission(using use-permission tag) which is defined by a different app. The problem is that this app where this permission string is defined may get installed after my app and due to this I'm getting Security permission and permission is not

[android-developers] Need Help Problem about socket communication between android smartphone and PC through WIFI

2012-06-18 Thread neo
Hello everyone, I have developed an application about socket communication between smartphone (as Client) and pc(as Server). und tested this application on Android Emulator and PC.It runs successfullly.But When I try to test the same application on the smartphone.It dosen't work.The error is

[android-developers] Service Discovery failed in Bluetooth Socket connection....

2012-06-18 Thread Rohit Patil
Hey guys i m working with Bluetooth API's i am able to start the bluetooth of my device programatically. I m able to see the already paired devices and new devices but i am not able to connect to any particular device. please help me out for this. -- You received this message

[android-developers] code compatibility with different api levels

2012-06-18 Thread Rishabh Jain
Hi guys, I am developing a library which third party applications will use in their application to make their application accessible. Well the problem I am facing is that I have implemented an interface(API level 10) in my library but as of API level 11 some more functions were added to it, so now

[android-developers] Re: Does Android support IPv6 now?

2012-06-18 Thread Rizvan Motala
How do I find out if my device supports IPV6 programatically? On Monday, January 4, 2010 4:23:56 PM UTC+5:30, Steinar H. Gunderson wrote: On 31 Des 2009, 05:46, mundou wentaosh...@gmail.com wrote: I don't know if real Android system can support IPv6 protocol stack. I compiled my own kernel

Re: [android-developers] Re: Eclipse Image Bug

2012-06-18 Thread Raghav Sood
http://www.droiddraw.org/ On Mon, Jun 18, 2012 at 12:06 PM, Sam scoutamis...@gmail.com wrote: Never heard of DroidDrawI'll have to check it out! Thanks! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] How to get list file from device bluetooth after connected this device?

2012-06-18 Thread Mr. Banana
I programing a application to manage file in local and bluetooth device, that run in android. In the manager file with bluetooth device, I have to connect to bluetooth devices but do not know the code to retrieve the file and file management on the bluetooth device. I hope someone knows how to

[android-developers] How to AD my apps?

2012-06-18 Thread Wilson Ye
Hi,guys, How to ad my apps? I have some apps like Scare Me and Speak Pics Where can I let people know them ? Thanks Wilson Studio -- 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] Why does Binder onTransact throw a RemoteException?

2012-06-18 Thread Maurits van der Hoorn
I was doing some remote service code using AIDL and saw that my auto-generated implementations of the Stub functions throw a RemoteException. I traced it back through the generated AIDL code into android.os.Binder.java execTransact where the exception gets parcelled into the reply, which looks

[android-developers] CursorAdapter and sample SimpleCursorAdapter

2012-06-18 Thread Live Happy
what are the differences between CursorAdapter and SimpleCursorAdapter ,wish one should i use in my database depend on what ? and wish one give faster result than other ? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Re: Help with App crackers

2012-06-18 Thread Giuseppe Porcelli
We are AG we just try to descourage download Il giorno 18/giu/2012 08:34, Nobu Games dev.nobu.ga...@gmail.com ha scritto: This is very unfortunate but did you read the first comment on that piracy forum? Some member called agsoftware says: When I install it ask for license Google Licensing

Re: [android-developers] First App on an Android - CalDAV4j

2012-06-18 Thread pushpa nc
Where are keeping your jar file? which tool you use to develop your application? On Mon, Jun 18, 2012 at 9:50 AM, bibble_235 iwise...@bibble.co.nz wrote: Hi all, I am writing my first App on an android and would like some help. I wanted to use the library CalDav4j. I have compiled my code

Re: [android-developers] Re: adb shell command from java code

2012-06-18 Thread Loka Sudharsan
Thnk u so much. On Fri, Jun 15, 2012 at 8:09 PM, Nobu Games dev.nobu.ga...@gmail.comwrote: Hi, you should take a look at WifiManager.getConfiguredNetworks()http://developer.android.com/reference/android/net/wifi/WifiManager.html#getConfiguredNetworks%28%29and

Re: [android-developers] First App on an Android - CalDAV4j

2012-06-18 Thread bibble_235
First, thanks for replying, I am using eclipse to develop with, just as bad as symbian. I assumed, probably wrongly, that the eclipse android plugin would take care of packaging. I see there is an android httpclient class and wondered if the 3.1 apache jar was not the right one. However

Re: [android-developers] CursorAdapter and sample SimpleCursorAdapter

2012-06-18 Thread TreKing
On Mon, Jun 18, 2012 at 1:45 AM, Live Happy livehap...@gmail.com wrote: what are the differences between CursorAdapter and SimpleCursorAdapter , Come now, I'm sure you can read the documentation for each class for yourself. wish one should i use in my database depend on what ? That

Re: [android-developers] code compatibility with different api levels

2012-06-18 Thread TreKing
On Thu, Jun 14, 2012 at 7:12 AM, Rishabh Jain rishabhiit...@gmail.comwrote: What should I do so that my library can support both API levels at the same time. I am guessing there is some kind of annotation for that Use reflection and the Android APIs which tell you which version you're

Re: [android-developers] Newbie confused about drawing

2012-06-18 Thread TreKing
On Fri, Jun 15, 2012 at 8:53 AM, Karl Garrison kdgar...@gmail.com wrote: My confusion is how I should get the Canvas to draw to if I am to do any drawing from other methods that I create. Just pass it along as an argument to your other methods: @Override public void onDraw(Canvas canvas) {

Re: [android-developers] CursorAdapter and sample SimpleCursorAdapter

2012-06-18 Thread Live Happy
i know that CursurAdapter is abstract and is to be extended. and, SimpleCursorAdapter is not abstract and is to implemented but based on what can i choose i just want experiences answer please On Mon, Jun 18, 2012 at 11:41 AM, TreKing treking...@gmail.com wrote: On Mon, Jun 18, 2012 at 1:45

[android-developers] Using custom Content Providers

2012-06-18 Thread Per-Jarle Sæther
Hello all Do I need to specify an uses tag in AndroidManifest if I shall use a custom Content provider? Example: Provider tag in Content Provider: provider android:name=BooksProvider android:authorities=net.learn2develop.provider.Books / What *uses* tag do I need to have in a client

[android-developers] SurfaceFlinger code flow

2012-06-18 Thread Rahul Garg
Hi all, I was looking for the SurfaceFlinger code flow, I tried to search, but I haven't any good post/tutorial which can explain the flow. My main motive is to know how code traverse from activity to SurfaceFlinger and then how it goes from SurfaceFlinger to Framebuffer. Thanks in advance.

[android-developers] Re: ApiDemos/OS/Sensors application canvas drawings blurred when built with SDK level 15

2012-06-18 Thread Kartic
I figured out the reason for blurring of circles even after switching hardware acceleration off in manifest. The reason was that Force GPU rendering setting in Developer options was enabled on my phone. This was overriding hardware acceleration settings in manifest -Kartic On Friday, June 15,

[android-developers] Android 4.0.4 on Imx53 is very slow

2012-06-18 Thread swaraj
Hi All, The performance is very slow when i updated android from 2.3 to 4.0.4 on iMX53. Cursor movement is very very slow while unlocking. How should i improve performance on IMX53 with android 4.0.4. Its very very slow. Thanks Regards, Swaraj -- You received this message because you

[android-developers] Screen share on live

2012-06-18 Thread Rocky
All, I'm developing apps that enables sharing actual screen (display content) between mobile handsets in real-time. Screen sharing includes multi-media content sharing (UI, photos, video audio, etc.). Thereby the master user connects to clients and share his actual display content. Is it

[android-developers] Re: Memory leak in GLSurfaceView tutorial

2012-06-18 Thread Gerhard Aigner
Even easier to reproduce the leak: just enable the strict mode on line 32 in com.example.android.apis.graphics.GLSurfaceViewActivity from the API Samples protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); StrictMode.setVmPolicy(new

[android-developers] ListView HighLight when clicking the itemView

2012-06-18 Thread Raphael
I just wonder how to cancel the highlighting effects of the sub-item of the ListView,when pressing mouse down on it. -- 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

Re: [android-developers] Leaking Window on orientation change

2012-06-18 Thread Vance Turnewitsch
Thanks. I tried using the method and it appears that the method gets called after the Activity has been destroyed and during some process of recreating the Activity: 06-18 06:26:32.639: E/WindowManager(1767): Activity com.betweenthehills.TestVideoPlayerActivity has leaked window

Re: [android-developers] Using custom Content Providers

2012-06-18 Thread Mark Murphy
You do not need to have a uses-permission element to use that ContentProvider. I do not know what other uses tag you might be concerned with. On Mon, Jun 18, 2012 at 5:09 AM, Per-Jarle Sæther per.jarle.saet...@gmail.com wrote: Hello all Do I need to specify an uses tag in AndroidManifest if I

Re: [android-developers] Question on launching activity from notification

2012-06-18 Thread Mark Murphy
On Thu, Jun 14, 2012 at 12:04 PM, Yezersky robornmir...@gmail.com wrote: what's happened? follow Android SDK, singleTask is same as FLAG_ACTIVITY_CLEAR_TOP, but I get different result here? IMHO, singleTask is closer to FLAG_ACTIVITY_CLEAR_TOP|FLAG_ACTIVITY_SINGLE_TOP. -- Mark Murphy (a

Re: [android-developers] Question about AccountManager and OAuth authentication with Google App Engine

2012-06-18 Thread Francois Masurel
Hi Mukesh, Have you found a solution on this? I'm desperately trying to implement it on my Android app without success. Thanx for your help. Francois Bordeaux, France On Monday, January 9, 2012 8:36:08 AM UTC+1, Mukesh Srivastav wrote: Hi Rishi, I had tried the above concept but i

Re: [android-developers] Permissions for System Apps (not in /data/system/packages.xml?)

2012-06-18 Thread Mark Murphy
On Sun, Jun 17, 2012 at 1:34 PM, Jason Meyer jasonmeyer...@yahoo.de wrote: Where are the permissions stored which were granted to apps installed in /system/app? Nothing is granted to apps installed on /system/app automatically AFAIK. However, apps installed there can request signature or

Re: [android-developers] Ho clean-up filesystem when remove an application

2012-06-18 Thread Mark Murphy
On Thu, Jun 14, 2012 at 4:18 PM, elio francesconi elio.francesc...@gmail.com wrote: I'm wondering how cleaning up configuration and data stored into the filesystem, when a user removes an application. Everything on internal storage, and everything in getExternalFilesDir() and

Re: [android-developers] Recover Certificate from APK

2012-06-18 Thread Saurav
Thank you so much Dianne and Others for your quick and strong response. I don't know whether any of you did not get the point that I know it was my mistake, to lose the keystore file. No doubt on that :) Anyways, as you all said, I have put my new keystore in my git repo. Fall back Regards,

Re: [android-developers] image format for android games

2012-06-18 Thread Tony Houghton
On Sat, 9 Jun 2012 02:13:34 -0700 (PDT) EDan voltolinidan...@gmail.com wrote: I have a problem with images in android games. I bought a book 1 month ago Beginning Android 4 Games Development and I already write the framework for develop game that the book explain, so the problem is not in the

Re: [android-developers] Recover Certificate from APK

2012-06-18 Thread Mark Murphy
On Mon, Jun 18, 2012 at 6:41 AM, Saurav to.saurav.mukher...@gmail.com wrote: Anyways, as you all said, I have put my new keystore in my git repo. Um, I really hope that's a private repo. Backed up does not mean published for the world to see. -- Mark Murphy (a Commons Guy)

Re: [android-developers] Recover Certificate from APK

2012-06-18 Thread Saurav
Ha ha! It is not public, Mark. Regards, Saurav Mukherjee. On Mon, Jun 18, 2012 at 4:14 PM, Mark Murphy mmur...@commonsware.comwrote: see -- 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] i need control users my app ??

2012-06-18 Thread ala hammad
hello all, how i can control users my app , to make him test it just test. without upload to google play ... and can't give user .apk fear upload to google play . any idea to do that ?? -- You received this message because you are subscribed to the Google Groups Android Developers group. To

Re: [android-developers] Using custom Content Providers

2012-06-18 Thread Per-Jarle Sæther
Hello, and thank you for replying I was looking at a tutorial that used Contacts which is a ContentProvider That app had the following tag in AndroidManifest: uses-permission android:name=android.permission.READ_CONTACTS /uses-permission I thought maybe I would need

[android-developers] Re: i need control users my app ??

2012-06-18 Thread lbendlin
your question is difficult to understand. If you want to have users test your program before you publish it, send them a debug APK (for example as an email attachment). If you fear that your APK would be posted to the Play store by malicious testers then you may want to rethink your

[android-developers] Re: i need control users my app ??

2012-06-18 Thread ala hammad
ok i try to simple my question , i am developer need to test my app .. but i fear tester steal my app and upload to google play .. so need a way to make my app temporarily for users .. any idea to do that .. On Monday, 18 June 2012 15:02:32 UTC+3, ala hammad wrote: hello all, how i can

[android-developers] Re: Permissions for System Apps (not in /data/system/packages.xml?)

2012-06-18 Thread Jason Meyer
Thanks for your quick reply, Mark. Nonetheless, I am still wondering: Does that mean that an app stored as APK in /system/app/ can use any permission which is = signatureOrSystem? Or can only permissions == signatureOrSystem be made use of? (the latter is definitely not the case, see below) As I

[android-developers] Intent implementation

2012-06-18 Thread r4f4
Hi, I developed an App and i executed some tests. This tests consists in sending data from one background service to another background service. All data was received when the transmission rate was low. However when i increased the transmission rate, some data (typically 2- 3 %) was not received

Re: [android-developers] Re: Eclipse Image Bug

2012-06-18 Thread Tor Norbye
This sounds like this bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=375421 Note however that we don't know how to reproduce this bug. If anyone has reproducible steps, please describe in as much detail as possible and attach to that issue. -- Tor On Sun, Jun 17, 2012 at 11:59 AM, G. Blake

Re: [android-developers] Need Help Problem about socket communication between android smartphone and PC through WIFI

2012-06-18 Thread Robert Greenwalt
If you take a bugreport the route table should be listed and we would know more. On Fri, Jun 15, 2012 at 4:56 AM, neo shen.song...@googlemail.com wrote: Hello everyone, I have developed an application about socket communication between smartphone (as Client) and pc(as Server). und tested

Re: [android-developers] Every few hours Eclipse + ADT runs out of resources...

2012-06-18 Thread Tor Norbye
Can you try using ADT 20 Preview 3? It contains various leak fixes, such as http://code.google.com/p/android/issues/detail?id=26774 . -- Tor On Thu, Jun 14, 2012 at 11:35 AM, Nobu Games dev.nobu.ga...@gmail.comwrote: Hi I know this is an old post but I'm running across the very same

Re: [android-developers] Every few hours Eclipse + ADT runs out of resources...

2012-06-18 Thread Tor Norbye
By the way, ADT 20 Preview 3 is here: http://tools.android.com/download/adt-20-preview . We'll hopefully have a final build in the next few weeks. -- Tor On Mon, Jun 18, 2012 at 7:34 AM, Tor Norbye tnor...@google.com wrote: Can you try using ADT 20 Preview 3? It contains various leak fixes,

Re: [android-developers] ListView HighLight when clicking the itemView

2012-06-18 Thread Justin Anderson
If I understand your question correctly, just override the listview's selector... You can do this with the the android:listSelector property. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Mon, Jun 18, 2012 at 4:24 AM, Raphael raphael.li...@gmail.com

[android-developers] Re: Need Help Problem about socket communication between android smartphone and PC through WIFI

2012-06-18 Thread Chris Stratton
This suggests that either you are using an emulator-only alias address, or are trying to contact a pc on a private network behind firewall/nat from the device's mobile network rather than having the device active on wifi at the time of the attempt.. Try something with prebuilt software such as a

Re: [android-developers] Re: Permissions for System Apps (not in /data/system/packages.xml?)

2012-06-18 Thread Mark Murphy
On Mon, Jun 18, 2012 at 9:48 AM, Jason Meyer jasonmeyer...@yahoo.de wrote: Nonetheless, I am still wondering: Does that mean that an app stored as APK in /system/app/ can use any permission which is = signatureOrSystem? Well, sure, if they request it, just like any other SDK app. As I

Re: [android-developers] Using custom Content Providers

2012-06-18 Thread Mark Murphy
If the ContentProvider has an android:permission, android:readPermission, or android:writePermission attribute in its provider element in the manifest, then the consumer needs to have the corresponding uses-permission element. On Mon, Jun 18, 2012 at 9:02 AM, Per-Jarle Sæther

Re: [android-developers] Recover Certificate from APK

2012-06-18 Thread Mark Murphy
On Mon, Jun 18, 2012 at 7:31 AM, Saurav to.saurav.mukher...@gmail.com wrote: Ha ha! It is not public, Mark. That's good. I'm willing to bet that there's a few dozen projects floating around, though, who *did* upload their keystore into a public git repo. That's bad -- they are one Google

[android-developers] Trying to use the ListView

2012-06-18 Thread Felipe Monteiro de Carvalho
Hello, I am trying to create a ListView where each item has a Title (bigger text) and a Description (smaller text under the other one), and I need it to be 100% pure code, without any kind of XML, but I am having a lot of difficulty as ListView seams to be an absurdely hard to use class. Ok,

[android-developers] Re: Permissions for System Apps (not in /data/system/packages.xml?)

2012-06-18 Thread Chris Stratton
On Jun 17, 1:34 pm, Jason Meyer jasonmeyer...@yahoo.de wrote: after doing a bit of research I've gotten very curious: Where are the permissions stored which were granted to apps installed in /system/app? I checked out my phone's packages.xml file (located in /data/system/ packages.xml). User

  1   2   >