You've already forked Magisk
mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-09-06 06:36:58 +00:00
13 lines
299 B
Java
13 lines
299 B
Java
package com.topjohnwu.magisk.components;
|
|
|
|
import com.topjohnwu.magisk.MagiskManager;
|
|
import com.topjohnwu.magisk.utils.Utils;
|
|
|
|
public class Fragment extends android.support.v4.app.Fragment {
|
|
|
|
public MagiskManager getApplication() {
|
|
return Utils.getMagiskManager(getActivity());
|
|
}
|
|
|
|
}
|