-1

I am trying to create a GalleryHide app. I am succesful in removing my app Icon from Home Screen.

But it doesn't remove when I open any app Manager app. Is it possible to remove our package Detail

final PackageManager pm = getPackageManager();
//get a list of installed apps.
List<ApplicationInfo> packages = pm.getInstalledApplications(PackageManager.GET_META_DATA);

for (ApplicationInfo packageInfo : packages) {
    Log.d(TAG, "Installed package :" + packageInfo.packageName);
    Log.d(TAG, "Source dir : " + packageInfo.sourceDir);
    Log.d(TAG, "Launch Activity :" + pm.getLaunchIntentForPackage(packageInfo.packageName)); 
}

and with the help of ApplicationInfo. Apps read my appIcon,packageName and open my hidden app. How could I resist them to show my app.

Zar E Ahmer
  • 33,936
  • 20
  • 234
  • 300

1 Answers1

0

Is it possible to remove our package Detail

No.

How could I resist them to show my app.

Do not ship the app.

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491