Skip to content

Commit 7dd0976

Browse files
author
Raphael
committed
Project-lib sample: define lib activity.
This was removed by mistake. I meant to add explanations. Change-Id: I3641b7c01a1425ab5430695ac83ca71c9fc644d8
1 parent edabb7b commit 7dd0976

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

samples/TicTacToeLib/AndroidManifest.xml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,14 @@
1616
-->
1717

1818
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19-
package="com.example.android.tictactoe.library"
20-
android:versionCode="1"
21-
android:versionName="1.0">
22-
</manifest>
19+
package="com.example.android.tictactoe.library">
20+
<application>
21+
<!-- The activity tag here is currently not used. The main project TicTacToeMain
22+
must currently redefine the activities to be used from the libraries.
23+
However later the tools will pick up the activities from here and merge them
24+
automatically, so it's best to define your activities here like for any
25+
regular Android project.
26+
-->
27+
<activity android:name="GameActivity" />
28+
</application>
29+
</manifest>

0 commit comments

Comments
 (0)