OK, so there are two parts that work together to define the Activity location. First, is the package attribute-- below it is `"com.flipagain2"
Also there is the android:name attribute, which, for example, is .FlipAgain2Activity.
So, this means when Android looks for your activity, it is looking at
com.flipagain2.FlipAgain2Activity. Make sense? Just combine those two things.
So, you want Activities in two packages.
Change the second (one that isn't working" to look like this:
<activity android:name="com.package2.CaptureActivity" >
<intent-filter>
<action android:name="com.google.zxing.client.android.CaptureActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
Do you see what I changed? Leave the first Activity declaration the same, but change the second android:name= to match the fully qualified name including the package. Using this approach, every Activity can be in a different package.