Back to project page permission-explorer.
The source code is released under:
Copyright (C) 2012 Rui Gon?alves and Daniel Cibr?o Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),...
If you think the Android project permission-explorer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package pt.up.fe.ssin.pexplorer.app; //from w w w. j av a2s . c o m import pt.up.fe.ssin.pexplorer.data.PermissionCatalog; import android.content.pm.PermissionInfo; public interface Keys { String INTENT_EXT_NAME = "name"; String PREFS_FILE = "preferences"; String PREFS_GROUPS = "groups"; String PREFS_LEVEL = "level"; String PREFS_RELEVANCE = "relevance"; String PREFS_SHOW_ALL_APPS = "show_all_apps"; String ALL_GROUPS_VALUE = "<ALL>"; String DEFAULT_GROUPS = ALL_GROUPS_VALUE; int DEFAULT_LEVEL = PermissionInfo.PROTECTION_NORMAL; int DEFAULT_RELEVANCE = PermissionCatalog.RELEVANCE_COMMON; boolean DEFAULT_SHOW_ALL_APPS = false; }