Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. static boolean isFirstInstall(Context context) {
  2. if (new File(context.getFilesDir(), Constants.FILE_WITH_APP_INSTALL_INFO).exists()) {
  3. return false;
  4. }
  5. saveAppFirstInstallInfo(context);
  6. return true;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement