Launcher 개발중에 의문이 들어 질문 드립니다.

AndroidManifest.xml 파일내에

1. 최상단에 있는 android:sharedUserId  이게 먼가요??

 <manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android.launcher"
    android:sharedUserId="android.uid.shared"
    android:sharedUserLabel="@string/uid_name">


2. 또한 android:process="android.process.acore" 이것도 잘 모르겠네요 ^^;

 <application
        android:name="LauncherApplication"
        android:process="android.process.acore"
        android:label="@string/application_name"
        android:icon="@drawable/ic_launcher_home">

3. Launcher 개발시에 이클립스상에서 기본 SDK로 할 수 없는 부분을 주석 처리해서 올리면 동작하는데

리눅스상에서 안드로이드 풀소스와 같이 make 해주면 Resources$NotFoundException 에러가 나네요... 동일한 코드인데 말이죠 ㅠㅠ

Launcher 개발하실때 이런 문제 겪으신분 없나요??