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
| public class NewIntentProcessor extends AbstractProcessor { | |
| private static final String METHOD_PREFIX = "start"; | |
| private static final ClassName classIntent = ClassName.get("android.content", "Intent"); | |
| private static final ClassName classContext = ClassName.get("android.content", "Context"); | |
| private Filer filer; | |
| private Messager messager; | |
| private Elements elements; | |
| private Map<String, String> activitiesWithPackage; |
OlderNewer