This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | |