Skip to content

Commit

Permalink
fix log icon reference not valid as to early access
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterHasse committed Jul 18, 2024
1 parent bba928a commit a3ff335
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,14 @@ protected void onCreate(Bundle savedInstanceState) {
gv.setFeature_admin(pm.hasSystemFeature(PackageManager.FEATURE_DEVICE_ADMIN));
gv.setFeature_work_profile(pm.hasSystemFeature(PackageManager.FEATURE_MANAGED_USERS));
gv.setFeature_telephony(feature_telephony);
gv.setLog_status(findViewById(R.id.log_status_icon));

// initialize android UX related thing the app needs
setContentView(R.layout.activity_main);
Toolbar toolbar = findViewById(R.id.toolbar);
toolbar.setTitle("");
setSupportActionBar(toolbar);
gv.setLog_status(findViewById(R.id.log_status_icon));

NavHostFragment navHostFragment = (NavHostFragment) getSupportFragmentManager().findFragmentById(R.id.fragmentContainerView);
navController = Objects.requireNonNull(navHostFragment).getNavController();
// create notification channel
Expand Down

0 comments on commit a3ff335

Please sign in to comment.