Skip to content

Commit 876e032

Browse files
committed
Fixed bug that issued warnings on registered activities when their package was not the application package. Fixes issue 48.
1 parent 7cda67f commit 876e032

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

AndroidAnnotations/src/main/java/com/googlecode/androidannotations/helper/AndroidManifestFinder.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ private AndroidManifest parseThrowing(File androidManifestFile) throws Exception
128128
activityQualifiedName = applicationPackage + activityName;
129129
} else {
130130
activityQualifiedName = applicationPackage + "." + activityName;
131+
activityQualifiedNames.add(activityName);
131132
}
132133
}
133134
activityQualifiedNames.add(activityQualifiedName);

0 commit comments

Comments
 (0)