Skip to content

Commit

Permalink
allow Android 7 and up to use snowflake and obfs4
Browse files Browse the repository at this point in the history
  • Loading branch information
n8fr8 committed Oct 20, 2022
1 parent d8987ad commit 56138d8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ protected void onCreate(Bundle savedInstanceState) {
if (actionBar != null) {
actionBar.setDisplayHomeAsUpEnabled(true);
}
if(android.os.Build.VERSION.SDK_INT < 28){

if(android.os.Build.VERSION.SDK_INT < 24){
findViewById(R.id.btnMoat).setVisibility(View.GONE);
findViewById(R.id.btnBridgesSnowflake).setVisibility(View.GONE);
findViewById(R.id.btnSnowflakeAmp).setVisibility(View.GONE);
Expand Down

0 comments on commit 56138d8

Please sign in to comment.