This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Distinguishes different kinds of app starts: <li> | |
| * <ul> | |
| * First start ever ({@link #FIRST_TIME}) | |
| * </ul> | |
| * <ul> | |
| * First start in this version ({@link #FIRST_TIME_VERSION}) | |
| * </ul> | |
| * <ul> | |
| * Normal app start ({@link #NORMAL}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package asia.idoo.trygmap2; | |
| import android.app.Activity; | |
| import android.content.Context; | |
| import android.content.res.Resources; | |
| import android.graphics.*; | |
| import android.location.Location; | |
| import android.os.Bundle; | |
| import android.view.View; | |
| import android.widget.Toast; |