Skip to content

Commit bba2d41

Browse files
committed
Move Finch Framework to library project
1 parent b478a00 commit bba2d41

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+227
-117
lines changed

AndroidUIDemo/src/com/oreilly/demo/android/pa/uidemo/TouchMe.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@ public boolean onKey(View v, int keyCode, KeyEvent event) {
176176
}
177177

178178
makeDot(dotModel, dotView, color);
179-
return true;
180179

180+
return true;
181181
} });
182182

183183

FinchChat/AndroidManifest.xml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<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">
11+
<intent-filter>
12+
<action android:name="android.intent.action.MAIN" />
13+
<category android:name="android.intent.category.LAUNCHER" />
14+
</intent-filter>
15+
</activity>
16+
<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+
</application>
22+
23+
<uses-permission android:name="android.permission.INTERNET" />
24+
<uses-permission android:name="android.permission.BLUETOOTH" />
25+
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
26+
27+
<uses-sdk android:minSdkVersion="7" />
28+
</manifest>
File renamed without changes.
File renamed without changes.

FinchFrameworkTest/project.properties renamed to FinchChat/project.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99

1010
# Project target.
1111
target=android-14
12+
android.library=false

FinchChat/res/anim/flip.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<set xmlns:android="http://schemas.android.com/apk/res/android">
3+
<rotate
4+
android:fromDegrees="0.0"
5+
android:toDegrees="180.0"
6+
android:pivotX="50%"
7+
android:pivotY="50%"
8+
android:duration="2000"
9+
/>
10+
</set>
3.32 KB
File renamed without changes.
File renamed without changes.
3.32 KB

0 commit comments

Comments
 (0)