()
| 17 | private ArrayList<Activity> runningActivities; |
| 18 | |
| 19 | @Override |
| 20 | public void onCreate() |
| 21 | { |
| 22 | super.onCreate(); |
| 23 | |
| 24 | if(BuildConfig.DEBUG) |
| 25 | { |
| 26 | final String package_name = getApplicationContext().getPackageName(); |
| 27 | if(!PACKAGE_NAME.equals(package_name)) |
| 28 | throw new SecurityException("Cached package name doesn't match with App's package name"); |
| 29 | } |
| 30 | |
| 31 | } |
| 32 | |
| 33 | private String getVersion() |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected