Project-lib sample: set namespace to com.example.android

This is a pure namespace refactoring change.

Change-Id: I33f5998f876cdc9893d8d45983422ca0e331b3c4
This commit is contained in:
Raphael
2010-04-05 14:25:50 -07:00
parent b8a884fbab
commit bbfd2ed1c2
7 changed files with 14 additions and 13 deletions

View File

@@ -13,10 +13,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.example.tictactoe;
import com.example.tictactoe.library.GameActivity;
import com.example.tictactoe.library.GameView.State;
package com.example.android.tictactoe;
import android.app.Activity;
import android.content.Intent;
@@ -24,6 +22,9 @@ import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import com.example.android.tictactoe.library.GameActivity;
import com.example.android.tictactoe.library.GameView.State;
public class MainActivity extends Activity {
/** Called when the activity is first created. */
@Override