[android-developers] Re: LVL: possible to check license for a different app?

2014-02-06 Thread 3c
Does any-one has a solution to this? I would really need this to work! Isn't there any way to check the license of one package from another package? On Thursday, January 23, 2014 8:47:16 AM UTC+1, 3c wrote: > > Hello, I was really wondering the same thing (for a different purpose),

[android-developers] Re: LVL: possible to check license for a different app?

2014-01-22 Thread 3c
Hello, I was really wondering the same thing (for a different purpose), however no-one clearly answered your original question here, so I've actually tested it directly. First thing, I had to modify the LVL library to take a package name and version code as parameter instead of using the curren

Re: [android-developers] Re: Jelly bean swiping task away from task list kills service

2014-01-09 Thread 3c
Hello Dianne, Unfortunately since Android KitKat, the process is killed with its background services, and those are not restarted as they should (when using STICKY service). This is a serious issue for any widget app or any background services meant to stay alive. At the same time this happens,

Re: [android-developers] Re: Swipe app out of recent tasks permanently kills app (like force-stop) even though it's running background services!

2014-01-03 Thread 3c
Just for the record Piren now that this bug has actually been verified by others, not just argued without testing, I didn't insulted anyone, and didn't go into rhetoric. The original post is pretty clear and shows extract on actual Android dev documentation and actual Android verified behavior

[android-developers] TRANSACTION_getPackageInfo cannot be used on KitKat

2014-01-03 Thread 3c
Hello all, First, I know I should not do that, but that's the only way I found to ensure the APK signature has not been tampered with and is not being spoofed (that is the signatures as returned by normal API returns the original APK signature but it no longer matches the real one! So the belo

[android-developers] Re: Swipe app out of recent tasks permanently kills app (like force-stop) even though it's running background services!

2013-12-22 Thread 3c
Any-one tried to use the android:persistent flag set to true in Application manifest? Might not really be a desired configuration, but might help some specific use cases. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this gro

[android-developers] Re: Swipe app out of recent tasks permanently kills app (like force-stop) even though it's running background services!

2013-12-13 Thread 3c
> Manage Applications)."* > > This was introduced in 3.1 before we had swiping away. > > > On Friday, December 13, 2013 1:22:27 AM UTC, 3c wrote: >> >> I cannot agree with this as the recent task list in no way suggest >> killing the apps. Actually every

[android-developers] Re: Swipe app out of recent tasks permanently kills app (like force-stop) even though it's running background services!

2013-12-12 Thread 3c
I cannot agree with this as the recent task list in no way suggest killing the apps. Actually every users seems to see it differently. Some take that recent task list as the name suggest, recent tasks and activities, others see it as you suggest an app killing, but most users don't know what's

[android-developers] Swipe app out of recent tasks permanently kills app (like force-stop) even though it's running background services!

2013-12-12 Thread 3c
The swipe app out of recent tasks is supposed (as far as I understand it) to terminate all activities but keep services running. This is true (and I verified that behavior) until KitKat (verified on 4.4.1 and 4.4.2). In KitKat, the app is killed instantly: 12-12 22:04:47.386: I/ActivityManager(7

[android-developers] Re: Passing the "design for tablets" checks (dev console optilmization tips)

2013-11-23 Thread 3c
If you go in your console, select your app, then optimization tips it says this: WHAT YOU SHOULD DOWHEN YOU DID IT *Designed your app for tablets* Hide details *Upload tablet screenshots:* Upload at least one screenshot for 10-inch tablets to the Store Listing

[android-developers] Advice for SMS backup & restore apps - not working?

2013-11-23 Thread 3c
I tried to follow the blog here: http://android-developers.blogspot.fr/2013/10/getting-your-sms-apps-ready-for-kitkat.html However I cannot make the 'Advice for SMS backup & restore apps' section work. My app is a simple SMS backup/restore app, it has permissions to read/write SMS, but when I

Re: [android-developers] Re: PACKAGE_ADDED, PACKAGE_REMOVED and PACKAGE_REPLACED...

2013-05-18 Thread 3c
Hello Diana, I need to know when my app is updated, because now on JB it is forced-stopped which prevents services to continue to do what user wants them to do. However I don't want app to be started for every app update taking place! So you suggest to filter on package name, however there is

[android-developers] Re: Context sub-menu opened-closed-reopened by itself!?

2013-04-29 Thread 3c
A pity no-one replied. Anyway, I decided to get rid of the sub-menu and on item selection, open a new context menu. Only issue was to actually keep it open, and I had to delay the opening of the sub-menu. The following got rid of the flickering and ensured the sub-menu remained open. Had to us

[android-developers] Re: Context sub-menu opened-closed-reopened by itself!?

2013-04-29 Thread 3c
Diane, if you're out there, I hope you can comment on this? I feel like being the only one having this issue no one cares about? But I still fail to see what I've done wrong. So any insight would be greatly appreciated! No-one ever faced this issue? -- -- You received this message because y

[android-developers] Re: Context sub-menu opened-closed-reopened by itself!?

2013-03-24 Thread 3c
No one to tell me what I'm doing wrong? Tried to use different context menu, one item of a context menu triggering another openContextMenu, but then "sub-menu" closes with parent menu completely. Any help would be appreciated. -- -- You received this message because you are subscribed to the

Re: [android-developers] Detect Intent Broadcast Receivers

2013-03-11 Thread 3c
This statement is not entirely true either: queryBroadcastReceivers will not return anything if using a PACKAGE_REPLACED intent alone. Same goes for many other intents in which it seems required to add specific scheme/type/data to get some results. Not sure it's worth asking here: how do i gat

[android-developers] Re: Invisible Files on ICS - media scanner thing?

2013-02-10 Thread 3c
I have developed a file explorer (Android Tuner if you want to test this) and got report that file moved/copied did not appear in gallery or other apps, (starting with ICS I think). So I added the scanning/deleting of all files manipulated by the file explorer, so that they would also appear in

[android-developers] Re: Gingerbread BroadcastReceiver Issue

2012-08-23 Thread 3c
Would it be possible to have a mailing list for discovered Android bug? I wish I knew this one sooner so I could avoid many user complaints in the first place. And also spending hours digging into my code and trying the reproduce user issues. -- You received this message because you are subscr

Re: [android-developers] Programmatically remove permission

2012-05-02 Thread 3c
Obviously they all use root permissions. But the post didn't mention "without root access". It's true, but requires root access and here is how to do it... would be a more valid and constructive answer. Though I don't personally know how to do that, but I'm interested in knowing how, with root

Re: [android-developers] Programmatically remove permission

2012-05-02 Thread 3c
How come some apps on Android Market are able to disable any app permissions then, if it's impossible? ;) On Tuesday, March 30, 2010 2:06:55 PM UTC+2, Mark Murphy (a Commons Guy) wrote: > > westmeadboy wrote: > > How to programmatically remove a permission? > > > > I don't think its possible bu

Re: [android-developers] getInstalledPackages(PackageManager.GET_ACTIVITIES) -> PackageManager has died!?

2012-04-25 Thread 3c
Well, I reverted the call to getInstalledPackages(0); Then manually retrieved the activity I was interested in, as I knew in advance which one to look for. A flawed firmware why not, but just exceeding 1MB of activity data seems unreasonable? My kids have installed 300+ games on their tablets a

[android-developers] getInstalledPackages(PackageManager.GET_ACTIVITIES) -> PackageManager has died!?

2012-04-24 Thread 3c
Here is a crash report I received today while my app runs: pm.getInstalledPackages(PackageManager.GET_ACTIVITIES); Can someone tell me how to resolve this? This call used to have the flag set to 0 without issues, but now one (maybe more) of my users is receiving this error preventing the use of

[android-developers] Re: How to keep a service running to get SCREEN_ON broadcast?

2011-09-06 Thread 3c
n Anderson wrote: > > >http://stackoverflow.com/questions/2575242/android-intent-action-scre... > > > Thanks, > > Justin Anderson > > MagouyaWare Developer > >http://sites.google.com/site/magouyaware > > > On Sat, Jul 2, 2011 at 12:03 AM, 3c wrote: > >

[android-developers] How to keep a service running to get SCREEN_ON broadcast?

2011-07-04 Thread 3c
Hello, I have an application which monitors various components of the Android system: CPU, Memory, SD, apps, etc... The users can select to have a widget or a notification displayed on their device or even both. The notifications are able to display CPU load or CPU frequency and are provided as a