mirror of
https://github.com/wesaphzt/privatelock.git
synced 2025-04-21 15:09:08 +00:00
fix links
This commit is contained in:
parent
e51a510645
commit
000eb550a2
1 changed files with 4 additions and 3 deletions
|
@ -21,9 +21,8 @@ import com.wesaphzt.privatelock.R;
|
||||||
public class FragmentAbout extends Fragment {
|
public class FragmentAbout extends Fragment {
|
||||||
|
|
||||||
private static String GITHUB_URI;
|
private static String GITHUB_URI;
|
||||||
private static final String LICENSE_URI = GITHUB_URI + "/blob/master/LICENSE.txt";
|
private static String LICENSE_URI;
|
||||||
private static final String BUG_REPORT_URI = GITHUB_URI + "/issues";
|
private static String BUG_REPORT_URI;
|
||||||
|
|
||||||
private static String AUTHOR_GITHUB;
|
private static String AUTHOR_GITHUB;
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
|
@ -32,6 +31,8 @@ public class FragmentAbout extends Fragment {
|
||||||
View v = inflater.inflate(R.layout.fragment_about, container, false);
|
View v = inflater.inflate(R.layout.fragment_about, container, false);
|
||||||
|
|
||||||
GITHUB_URI = getString(R.string.app_github);
|
GITHUB_URI = getString(R.string.app_github);
|
||||||
|
LICENSE_URI = GITHUB_URI + "/blob/master/LICENSE";
|
||||||
|
BUG_REPORT_URI = GITHUB_URI + "/issues";
|
||||||
AUTHOR_GITHUB = getString(R.string.app_github_dev);
|
AUTHOR_GITHUB = getString(R.string.app_github_dev);
|
||||||
|
|
||||||
String versionName = "";
|
String versionName = "";
|
||||||
|
|
Loading…
Add table
Reference in a new issue