Nuke author tags and update Manifest that I

accidentally left out of the previous CL.

Change-Id: I0e7eb27b6e79cf5df62f901ed68225eed986fca2
This commit is contained in:
Ben Komalo
2010-10-12 17:00:43 -07:00
parent 14ca79d2a9
commit 5b2f2912bc
4 changed files with 7 additions and 8 deletions

View File

@@ -22,7 +22,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.apps.tag"> package="com.android.apps.tag">
<application android:label="Tags"> <application android:label="Tags">
<activity android:name="Tags" android:icon="@drawable/ic_launcher_nfc"> <activity android:name="TagBrowserActivity" android:icon="@drawable/ic_launcher_nfc">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN"/> <action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/> <category android:name="android.intent.category.LAUNCHER"/>

View File

@@ -30,7 +30,6 @@ import android.widget.Toast;
/** /**
* An {@code Activity} which handles a broadcast of a new tag that the device just discovered. * An {@code Activity} which handles a broadcast of a new tag that the device just discovered.
* @author nnk@google.com (Nick Kralevich)
*/ */
public class SaveTag extends Activity implements DialogInterface.OnClickListener { public class SaveTag extends Activity implements DialogInterface.OnClickListener {

View File

@@ -16,20 +16,21 @@
package com.android.apps.tag; package com.android.apps.tag;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.database.sqlite.SQLiteStatement;
import com.google.common.annotations.VisibleForTesting; import com.google.common.annotations.VisibleForTesting;
import com.trustedlogic.trustednfc.android.NdefMessage; import com.trustedlogic.trustednfc.android.NdefMessage;
import com.trustedlogic.trustednfc.android.NdefRecord; import com.trustedlogic.trustednfc.android.NdefRecord;
import com.trustedlogic.trustednfc.android.NfcException; import com.trustedlogic.trustednfc.android.NfcException;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.database.sqlite.SQLiteStatement;
import java.net.URI; import java.net.URI;
import java.util.Date; import java.util.Date;
/** /**
* @author nnk@google.com (Nick Kralevich) * Database utilities for the saved tags.
*/ */
public class TagDBHelper extends SQLiteOpenHelper { public class TagDBHelper extends SQLiteOpenHelper {

View File

@@ -30,7 +30,6 @@ import android.widget.SimpleCursorAdapter;
/** /**
* An {@code Activity} that displays a flat list of tags that can be "opened". * An {@code Activity} that displays a flat list of tags that can be "opened".
* @author nnk@google.com (Nick Kralevich)
*/ */
public class TagList extends ListActivity implements DialogInterface.OnClickListener { public class TagList extends ListActivity implements DialogInterface.OnClickListener {
private SQLiteDatabase db; private SQLiteDatabase db;