다른패키지의 엑티비티를 실행시키려고 하는데 구글링으로 찾아본 여러가지 방법들을 사용해봣으나 에러가 나네요ㅜㅜ

 저는 메니페스트 설정때문이라고 생각합니다만 어떻게 해야할까요 도움좀주셧으면합니다



Manifest 파일은 다음과 같이 설정해놓앗습니다

 <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="android.test.db"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".bcd.test_db"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
         <activity android:name=".abc.test" android:label="hello">
            <intent-filter>
                <action android:name="android.test.db.abc.test" />
            </intent-filter>
        </activity>
    </application>
    <uses-sdk android:minSdkVersion="4" />
</manifest> 

ㅜㅜ 어떻게 해야하나요 질문하신분들은 잇던데 답변이 모두 없더라구요 ;ㅅ;