Skip to content

Commit 39637a3

Browse files
RaphaelAndroid (Google) Code Review
authored andcommitted
Merge changes I3641b7c0,Ibdd1dbc8 into froyo
* changes: Project-lib sample: define lib activity. Switch from codename Froyo to API 8.
2 parents 254f0e9 + 7dd0976 commit 39637a3

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
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>

samples/TicTacToeMain/default.properties

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,4 @@
2525

2626
android.library.reference.1=../TicTacToeLib/
2727
# Project target. This requires the tools from SDK Froyo (API 8) to be used.
28-
# STOPSHIP change to target=8 once Froyo API is set to 8.
29-
target=android-Froyo
28+
target=8

samples/source.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Pkg.UserSrc=false
22
Pkg.Revision=1
3-
AndroidVersion.ApiLevel=7
4-
AndroidVersion.CodeName=Froyo
3+
AndroidVersion.ApiLevel=8
4+
#AndroidVersion.CodeName=
55

0 commit comments

Comments
 (0)