diff --git a/samples/TicTacToeLib/AndroidManifest.xml b/samples/TicTacToeLib/AndroidManifest.xml
index 9772b88c5..db44c0566 100755
--- a/samples/TicTacToeLib/AndroidManifest.xml
+++ b/samples/TicTacToeLib/AndroidManifest.xml
@@ -16,7 +16,7 @@
-->
\ No newline at end of file
diff --git a/samples/TicTacToeLib/res/layout-land/lib_game.xml b/samples/TicTacToeLib/res/layout-land/lib_game.xml
index c0f5cbab2..9777e02fe 100755
--- a/samples/TicTacToeLib/res/layout-land/lib_game.xml
+++ b/samples/TicTacToeLib/res/layout-land/lib_game.xml
@@ -22,7 +22,7 @@
android:gravity="center_vertical|center_horizontal"
>
-
-
@@ -30,7 +30,7 @@
-
+
diff --git a/samples/TicTacToeMain/src/com/example/tictactoe/MainActivity.java b/samples/TicTacToeMain/src/com/example/android/tictactoe/MainActivity.java
similarity index 91%
rename from samples/TicTacToeMain/src/com/example/tictactoe/MainActivity.java
rename to samples/TicTacToeMain/src/com/example/android/tictactoe/MainActivity.java
index b8d4afeb2..14a90116f 100755
--- a/samples/TicTacToeMain/src/com/example/tictactoe/MainActivity.java
+++ b/samples/TicTacToeMain/src/com/example/android/tictactoe/MainActivity.java
@@ -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