Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cann't get full packages within Android4.3 #1

Open
CaoPeng opened this issue Jan 6, 2014 · 4 comments
Open

cann't get full packages within Android4.3 #1

CaoPeng opened this issue Jan 6, 2014 · 4 comments

Comments

@CaoPeng
Copy link

CaoPeng commented Jan 6, 2014

Hi:
git clone the source code to local.
import the source code to eclipse.
compile,run on Android4.3 devices

However,It's cann't get the full packages
eg.without "android"

@ghost ghost assigned jesse1 Jan 7, 2014
@Satyendrat
Copy link

Hi CaoPeng,

I had similar problem, where the application keeps crashing on the device, I have modified the following line and it works. Also it loads the “android” package.

Apply the following change and compile.
Aprox Line No : 111
From : List l = getPackageManager().getInstalledPackages(0xFFFFFFFF);
To : List l = getPackageManager().getInstalledPackages(PackageManager.GET_ACTIVITIES);

Hope this helps.

Regards,
Satyendra Teppalavalasa

@CaoPeng
Copy link
Author

CaoPeng commented Sep 6, 2014

Hi Satyendrat
Thanks your feedback.
anyother issue.
more and more android deives separated the source and resource.

and one of the resource was load by AssetManager.cpp,it's add into a vector(or stack?)
this package's 'Context' same with 'android'

so ,this project cann't separated the system level(add by ODM)resource package and 'android'

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants
@jesse1 @Satyendrat and others