comment trouver l'activité principale de fichier apk pour robotium tests

J'ai beaucoup de fichiers apk et je veux écrire des tests simples avec robotium pour eux. J'ai quelques problèmes, quand j'ai essayé de trouver la main Activitys pour eux, en application Dropbox comme exemple.
Dans AndroidManifest.xml j'ai trouvé ceci:

</activity>
<provider android:name=".provider.ZipperedMediaProvider" android:exported="false" android:authorities="com.dropbox.android.ZipperedMediaProvider"></provider>
<provider android:name=".provider.CameraUploadsProvider" android:exported="false" android:authorities="com.dropbox.android.CameraUploadsProvider"></provider>
<activity android:theme="@android:01030055" android:name=".activity.DropboxBrowser">
<intent-filter >
<action android:name="android.intent.action.MAIN"></action>
<category android:name="android.intent.category.LAUNCHER"></category>
</intent-filter>
<intent-filter android:label="Dropbox File Browser">
<action android:name="com.dropbox.BROWSE"></action>
<action android:name="android.intent.action.VIEW"></action>
<action android:name="android.intent.action.EDIT"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<data android:mimeType="vnd.android.cursor.dir/vnd.dropbox.entry"></data>
<data android:mimeType="vnd.android.cursor.item/vnd.dropbox.entry"></data>
</intent-filter>
</activity>

De comprendre comment l'activité principale est appelée? Je suis a ApkAnalyser et j'ai essayé différents noms de classe et d'autres chaînes, mais robotium test ne peut pas lancer l'application et d'écrire qu'il n'existe pas de tests dans mon projet:/(apk est re-signé dans mon PC) je veux comprendre, comment les identifier MainActivity de th fichiers apk? thx

OriginalL'auteur user1835337 | 2013-03-19