Skip to content

Commit

Permalink
show also Android API level
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Jan 6, 2025
1 parent 647d619 commit 597f2de
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,18 +124,16 @@ public void onClick(View view)
{
githash_text.setText("build: ????????");
}
catch(Exception e)
catch(Exception ignored)
{

}

try
{
githash_text.setText("build: " + BuildConfig.GitHash);
githash_text.setText("build: " + BuildConfig.GitHash + "\n" + "API: " + Build.VERSION.SDK_INT + " ");
}
catch(Exception e)
catch(Exception ignored)
{

}
}

Expand Down

0 comments on commit 597f2de

Please sign in to comment.