Skip to content

Commit

Permalink
Merge pull request #249 from Simperium/andy/simperium-build-update
Browse files Browse the repository at this point in the history
Move requestWindowFeature before onCreate
  • Loading branch information
notandyvee authored Jul 16, 2024
2 parents 11e14c0 + 74c9bd1 commit b77345e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ public class AuthenticationActivity extends AppCompatActivity implements LoginSh

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
super.onCreate(savedInstanceState);
this.setTheme(R.style.Simperium);
setContentView(R.layout.activity_authentication);

Expand Down

0 comments on commit b77345e

Please sign in to comment.