Skip to content

Instantly share code, notes, and snippets.

@doeslater
doeslater / remove_mi_bloatware.txt
Last active December 21, 2023 14:23
Xiaomi MIUI bloatware
# ADB commands
## List users
adb shell pm list users
replace number with user number from previous command.
adb shell pm uninstall -k --user 10 com.mipay.wallet.in
adb shell pm uninstall -k --user 10 com.android.thememanager
adb shell pm uninstall -k --user 10 com.mi.globalbrowser
adb shell pm uninstall -k --user 10 com.mi.android.global.minusscreen
adb shell pm uninstall -k --user 10 com.android.thememanager
public class SomeFragment extends Fragment {
MapView mapView;
GoogleMap map;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.some_layout, container, false);