Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Apps downloaded from Play Store on Jelly Bean devices not working - even now - even free apps
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Bikram Agarwal  
View profile  
 More options Aug 15 2012, 3:12 pm
From: Bikram Agarwal <vicky.codemas...@gmail.com>
Date: Wed, 15 Aug 2012 12:12:29 -0700 (PDT)
Local: Wed, Aug 15 2012 3:12 pm
Subject: Apps downloaded from Play Store on Jelly Bean devices not working - even now - even free apps

Hi,

I'm novice in Android app developement. I recently started building theme
packs for different launchers and uploaded them on Play Store. These apps
are having issues with devices using Jelly Bean ROM. And not just the mass
reported encryption related issue. I had heard that only paid apps were not
working on JB earlier and then Google disabled the DRM on play store and
that the apps were now supposed to work on JB too. But that's not happening
for me.

   - Both of my paid and free apps are not working on Jelly Bean.
   - Both kinds are getting downloaded to /mnt/asec which is the
   'encrypted' market app download location for JB; and not the /data/app
   - The exact same apk, when sideloaded and installed, works fine. So,
   it's not app's issue.
   - I downloaded someone else's theme pack and it got downloaded to
   /data/app and worked fine.

So, my question is,

   - While compiling/building the apk, do I need to do some extra settings
   somewhere to make the app compatible with JB through play store?
   - How do I force my apps to download OR get installed at pre-JB
   locations and not /mnt/asec?

Any help would be appreciated. My apps are getting a bad rep due to this. :(

Thanks.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bikram Agarwal  
View profile  
 More options Aug 15 2012, 3:17 pm
From: Bikram Agarwal <vicky.codemas...@gmail.com>
Date: Wed, 15 Aug 2012 12:17:44 -0700 (PDT)
Local: Wed, Aug 15 2012 3:17 pm
Subject: Re: Apps downloaded from Play Store on Jelly Bean devices not working - even now - even free apps
 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
YuviDroid  
View profile  
 More options Oct 15 2012, 5:11 pm
From: YuviDroid <yuvidr...@gmail.com>
Date: Mon, 15 Oct 2012 23:07:18 +0200
Local: Mon, Oct 15 2012 5:07 pm
Subject: Re: [android-developers] Re: Apps downloaded from Play Store on Jelly Bean devices not working - even now - even free apps

I'm experiencing the same issues...did you manage to find any solution?

Thanks!

On Wed, Aug 15, 2012 at 9:17 PM, Bikram Agarwal
<vicky.codemas...@gmail.com>wrote:

> FYI, these are my installed ADK packages -

> <https://lh3.googleusercontent.com/-j1BMiwFXarg/UCv1rc26mkI/AAAAAAAAON...>

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

--
YuviDroid
Check out Launch-X <http://android.yuvalsharon.net/launchx.php> (a widget
to quickly access your favorite apps and contacts!)
http://android.yuvalsharon.net

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Nikolay Elenkov  
View profile  
 More options Oct 15 2012, 9:09 pm
From: Nikolay Elenkov <nikolay.elen...@gmail.com>
Date: Tue, 16 Oct 2012 10:05:38 +0900
Local: Mon, Oct 15 2012 9:05 pm
Subject: Re: [android-developers] Re: Apps downloaded from Play Store on Jelly Bean devices not working - even now - even free apps

On Tue, Oct 16, 2012 at 6:07 AM, YuviDroid <yuvidr...@gmail.com> wrote:

> I'm experiencing the same issues...did you manage to find any solution?

Fix your apps to support Jelly Bean properly. Even on JB, APK resources are
public and you can read them if you use the proper path or APIs. You can
simulate 'app encryption' (forward locking) by installing using

adb instal -l myapp.apk

for testing.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
YuviDroid  
View profile  
 More options Oct 16 2012, 11:05 am
From: YuviDroid <yuvidr...@gmail.com>
Date: Tue, 16 Oct 2012 17:02:34 +0200
Local: Tues, Oct 16 2012 11:02 am
Subject: Re: [android-developers] Re: Apps downloaded from Play Store on Jelly Bean devices not working - even now - even free apps

Thanks for the 'adb install -l' hint...very useful :)

I think that what I do is actually ok, but it doesn't work when installing
with the 'app encryption' (-l option).
This is what I do:

Resources appResources =
packageManager.getResourcesForApplication(appPackageName);
InputStream is = appResources.getAssets().open("drawable.xml");
...

In this example 'appPackageName' is the package name of the app installed
using app encryption. (while this code runs from another app)
By using the app encryption the
line appResources.getAssets().open("drawable.xml") fails with a
"java.io.FileNotFoundException: drawable.xml", while if I install it
without using app encryption it works fine.

Is there maybe another way to access the assets of another package?

Thanks,
Yuvi

On Tue, Oct 16, 2012 at 3:05 AM, Nikolay Elenkov
<nikolay.elen...@gmail.com>wrote:

--
YuviDroid
Check out Launch-X <http://android.yuvalsharon.net/launchx.php> (a widget
to quickly access your favorite apps and contacts!)
http://android.yuvalsharon.net

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
YuviDroid  
View profile  
 More options Oct 16 2012, 11:19 am
From: YuviDroid <yuvidr...@gmail.com>
Date: Tue, 16 Oct 2012 17:16:30 +0200
Local: Tues, Oct 16 2012 11:16 am
Subject: Re: [android-developers] Re: Apps downloaded from Play Store on Jelly Bean devices not working - even now - even free apps

Ok... so the way GO Launcher themes are designed should change (since all
the xml they require are in the assets folder)...mmm well...ok. There's not
much I can do..

On Tue, Oct 16, 2012 at 5:12 PM, Nikolay Elenkov
<nikolay.elen...@gmail.com>wrote:

--
YuviDroid
Check out Launch-X <http://android.yuvalsharon.net/launchx.php> (a widget
to quickly access your favorite apps and contacts!)
http://android.yuvalsharon.net

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »