mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-10-17 09:02:46 +00:00
Events should be final in order to work
This commit is contained in:
@@ -39,7 +39,7 @@ public class MagiskHideFragment extends Fragment implements CallbackHandler.Even
|
|||||||
"com.google.android.apps.walletnfcrel",
|
"com.google.android.apps.walletnfcrel",
|
||||||
"com.nianticlabs.pokemongo"
|
"com.nianticlabs.pokemongo"
|
||||||
);
|
);
|
||||||
public static CallbackHandler.Event packageLoadDone = new CallbackHandler.Event();
|
public static final CallbackHandler.Event packageLoadDone = new CallbackHandler.Event();
|
||||||
|
|
||||||
private ApplicationAdapter appAdapter;
|
private ApplicationAdapter appAdapter;
|
||||||
|
|
||||||
|
@@ -35,7 +35,7 @@ public class MainActivity extends AppCompatActivity
|
|||||||
|
|
||||||
private static final String SELECTED_ITEM_ID = "SELECTED_ITEM_ID";
|
private static final String SELECTED_ITEM_ID = "SELECTED_ITEM_ID";
|
||||||
|
|
||||||
public static CallbackHandler.Event recreate = new CallbackHandler.Event();
|
public static final CallbackHandler.Event recreate = new CallbackHandler.Event();
|
||||||
|
|
||||||
private final Handler mDrawerHandler = new Handler();
|
private final Handler mDrawerHandler = new Handler();
|
||||||
private SharedPreferences prefs;
|
private SharedPreferences prefs;
|
||||||
|
Reference in New Issue
Block a user