We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edabb7b commit 7dd0976Copy full SHA for 7dd0976
samples/TicTacToeLib/AndroidManifest.xml
@@ -16,7 +16,14 @@
16
-->
17
18
<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>
+ package="com.example.android.tictactoe.library">
+ <application>
+ <!-- The activity tag here is currently not used. The main project TicTacToeMain
+ 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