Skip to content
Snippets Groups Projects
Commit 35bbe8f5 authored by Francesco Andreuzzi's avatar Francesco Andreuzzi
Browse files

version name in output

parent 1b5e3e32
No related branches found
No related tags found
No related merge requests found
package ohi.andre.consolelauncher.commands.raw;
import ohi.andre.consolelauncher.BuildConfig;
import ohi.andre.consolelauncher.R;
import ohi.andre.consolelauncher.commands.CommandAbstraction;
import ohi.andre.consolelauncher.commands.ExecInfo;
import ohi.andre.consolelauncher.tuils.Tuils;
public class about implements CommandAbstraction {
@Override
public String exec(ExecInfo info) {
return info.res.getString(R.string.output_about);
return info.res.getString(R.string.version_label) + Tuils.SPACE + BuildConfig.VERSION_NAME + Tuils.NEWLINE + Tuils.NEWLINE +
info.res.getString(R.string.output_about);
}
@Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment