You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for (final PackageInfo pi : installedPackages) {
if (isCancelled()) continue;
// exclude self package
if (pi.packageName.equals(MyApplication.getInstance().getPackageName())) {
continue;
}
boolean checked = packageFragment.mAllPackageInfoMap.containsKey(pi.packageName) ? packageFragment.mAllPackageInfoMap.get(pi.packageName) : false;
installedPackageMap.put(pi.packageName, checked);
}
I saw this code from SettingsActivity.
As you see, my application package is excluding...
I wanna include own application package, too because I want to integrate this tun proxy app to another app.
I checked C Code. It was using the Pipe communication.
Do you have any solution? or it is not possible?
I hope you let me know. thanks
The text was updated successfully, but these errors were encountered:
for (final PackageInfo pi : installedPackages) {
if (isCancelled()) continue;
// exclude self package
if (pi.packageName.equals(MyApplication.getInstance().getPackageName())) {
continue;
}
boolean checked = packageFragment.mAllPackageInfoMap.containsKey(pi.packageName) ? packageFragment.mAllPackageInfoMap.get(pi.packageName) : false;
installedPackageMap.put(pi.packageName, checked);
}
I saw this code from SettingsActivity.
As you see, my application package is excluding...
I wanna include own application package, too because I want to integrate this tun proxy app to another app.
I checked C Code. It was using the Pipe communication.
Do you have any solution? or it is not possible?
I hope you let me know. thanks
The text was updated successfully, but these errors were encountered: