Skip to content

Commit f93c51f

Browse files
committed
Merge the two PA example repos
Conflicts: .gitignore 02/FillListTask/tools/ide/eclipse/classpath 02/SharedListTask/tools/ide/eclipse/classpath 03/TestApp/tools/ide/eclipse/classpath 06/AIDLDemo/tools/ide/eclipse/classpath 06/AsyncTaskDemo/tools/ide/eclipse/classpath 07/AndroidUIDemo/tools/ide/eclipse/classpath 08/SimpleFragment/default.properties 10/MicroJobs/tools/ant/build.xml 11/FinchLifecycle/default.properties 11/FinchLifecycle/proguard.cfg 11/FinchLifecycleBackport/proguard.cfg 12/FinchVideo/tools/ant/build.xml 16/SensorDemos/default.properties 16/SensorDemos/proguard.cfg 17/ClientDemo/default.properties 18/NDKDemo/default.properties AIDLDemo/project.properties AIDLDemo/tools/ide/eclipse/classpath AndroidUIDemo/project.properties AndroidUIDemo/res/layout/main.xml AndroidUIDemo/res/values/colors.xml AndroidUIDemo/src/com/oreilly/demo/android/pa/uidemo/view/DotView.java AndroidUIDemo/tools/ide/eclipse/classpath AndroidViewDemo/project.properties AsyncTaskDemo/proguard.cfg AsyncTaskDemo/tools/ant/build.xml AudioPlayer/proguard.cfg FillListTask/tools/ide/eclipse/classpath FinchChat/tools/ide/eclipse/classpath FinchFramework/project.properties FinchFramework/src/com/finchframework/finch/views/MesgEditText.java FinchLifecycle/project.properties FinchLifecycle/tools/ant/build.xml FinchLifecycle/tools/ide/eclipse/classpath FinchLifecycleBackport/proguard.cfg FinchLifecycleBackport/project.properties FinchVideo/project.properties FinchVideo/src/com/oreilly/demo/android/pa/finchvideo/FinchVideoActivity.java NDKDemo/proguard.cfg NDKDemo/tools/ant/build.xml README.txt SearchDemo/project.properties SensorDemos/proguard.cfg SharedListTask/tools/ide/eclipse/classpath UIFramework/proguard.cfg UIFramework/project.properties
2 parents 4800c4a + 8cdbaf9 commit f93c51f

File tree

27 files changed

+98
-159
lines changed

27 files changed

+98
-159
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
.classpath
44
.project
55
.settings
6+
.metadata
67
bin
78
gen
89
lint.xml
9-
/.metadata
1010

AIDLDemo/project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
# project structure.
99

1010
# Project target.
11-
target=android-14
11+
target=android-15

AndroidUIDemo/project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
# project structure.
99

1010
# Project target.
11-
target=android-14
11+
target=android-15

AndroidViewDemo/project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
# project structure.
99

1010
# Project target.
11-
target=android-14
11+
target=android-15

AsyncTaskDemo/project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
# project structure.
99

1010
# Project target.
11-
target=android-14
11+
target=android-15

ClientDemo/project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
# project structure.
99

1010
# Project target.
11-
target=android-14
11+
target=android-15

ContactViewer/project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
# project structure.
99

1010
# Project target.
11-
target=android-7
11+
target=android-15

FinchChat/AndroidManifest.xml

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,35 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.finchframework.finch"
4-
android:versionCode="1"
5-
android:versionName="1.0">
6-
<application android:icon="@drawable/icon"
7-
android:label="@string/app_name"
8-
android:debuggable="true">
9-
<activity android:name=".FinchWelcome"
10-
android:label="@string/app_name">
3+
package="com.finchframework.finch"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<application
8+
android:debuggable="true"
9+
android:icon="@drawable/icon"
10+
android:label="@string/app_name" >
11+
<activity
12+
android:name=".FinchWelcome"
13+
android:label="@string/app_name" >
1114
<intent-filter>
1215
<action android:name="android.intent.action.MAIN" />
16+
1317
<category android:name="android.intent.category.LAUNCHER" />
1418
</intent-filter>
1519
</activity>
1620
<activity android:name="com.finchframework.bluetooth.BtConsoleActivity" />
17-
<activity android:name="com.finchframework.bluetooth.DeviceListActivity"
18-
android:label="@string/select_device"
19-
android:configChanges="orientation|keyboardHidden"/>
20-
<activity android:name="animate.AnimateActivity"></activity>
21+
<activity
22+
android:name="com.finchframework.bluetooth.DeviceListActivity"
23+
android:configChanges="orientation|keyboardHidden"
24+
android:label="@string/select_device" />
25+
<activity android:name="animate.AnimateActivity" >
26+
</activity>
2127
</application>
2228

2329
<uses-permission android:name="android.permission.INTERNET" />
2430
<uses-permission android:name="android.permission.BLUETOOTH" />
25-
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
31+
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
2632

2733
<uses-sdk android:minSdkVersion="7" />
28-
</manifest>
34+
35+
</manifest>

FinchChat/project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
# project structure.
99

1010
# Project target.
11-
target=android-14
11+
target=android-15
1212
android.library=false

FinchFramework/project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
# project structure.
99

1010
# Project target.
11-
target=android-14
11+
target=android-15
1212
android.library=true

0 commit comments

Comments
 (0)