Merge change Ic3464854 into eclair

* changes:
  Renaming com.google.example.android.contactmanager to com.example.android.contactmanager.
This commit is contained in:
Android (Google) Code Review
2009-12-15 12:13:54 -08:00
3 changed files with 5 additions and 5 deletions

View File

@@ -15,7 +15,7 @@
--> -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.example.android.contactmanager" package="com.example.android.contactmanager"
android:versionCode="1" android:versionName="1.0"> android:versionCode="1" android:versionName="1.0">
<application android:label="@string/app_name" android:icon="@drawable/icon"> <application android:label="@string/app_name" android:icon="@drawable/icon">
<activity android:name=".ContactManager" android:label="@string/app_name"> <activity android:name=".ContactManager" android:label="@string/app_name">

View File

@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package com.google.example.android.contactmanager; package com.example.android.contactmanager;
import android.accounts.Account; import android.accounts.Account;
import android.accounts.AccountManager; import android.accounts.AccountManager;
@@ -48,9 +48,9 @@ public final class ContactAdder extends Activity implements OnAccountsUpdateList
{ {
public static final String TAG = "ContactsAdder"; public static final String TAG = "ContactsAdder";
public static final String ACCOUNT_NAME = public static final String ACCOUNT_NAME =
"com.google.example.android.contactmanager.ContactsAdder.ACCOUNT_NAME"; "com.example.android.contactmanager.ContactsAdder.ACCOUNT_NAME";
public static final String ACCOUNT_TYPE = public static final String ACCOUNT_TYPE =
"com.google.example.android.contactmanager.ContactsAdder.ACCOUNT_TYPE"; "com.example.android.contactmanager.ContactsAdder.ACCOUNT_TYPE";
private ArrayList<AccountData> mAccounts; private ArrayList<AccountData> mAccounts;
private AccountAdapter mAccountAdapter; private AccountAdapter mAccountAdapter;

View File

@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package com.google.example.android.contactmanager; package com.example.android.contactmanager;
import android.app.Activity; import android.app.Activity;
import android.content.Intent; import android.content.Intent;