Skip to content

Commit c56f789

Browse files
committed
changed face tracker and photo demo to use API version 9
This allows those demos to run on gingerbread. Note that multi-tracker cannot use that API level, since it uses at least one newer API feature (drawing ovals). Change-Id: Ibc99a2bb8f1907737a9074e0c9d056cda2726fd1
1 parent ddfa35e commit c56f789

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

face/FaceTracker/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ android {
66

77
defaultConfig {
88
applicationId "com.google.android.gms.samples.vision.face.facetracker"
9-
minSdkVersion 19
9+
minSdkVersion 9
1010
targetSdkVersion 22
1111
versionCode 1
1212
versionName "1.0"

face/FaceTracker/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<uses-permission android:name="android.permission.CAMERA" />
1111

1212
<uses-sdk
13-
android:minSdkVersion="11"
13+
android:minSdkVersion="9"
1414
android:targetSdkVersion="21" />
1515

1616
<application

face/photo-demo/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ android {
66

77
defaultConfig {
88
applicationId "com.google.android.gms.samples.vision.face.photo"
9-
minSdkVersion 19
9+
minSdkVersion 9
1010
targetSdkVersion 22
1111
versionCode 1
1212
versionName "1.0"

face/photo-demo/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
android:versionName="1" >
77

88
<uses-sdk
9-
android:minSdkVersion="11"
9+
android:minSdkVersion="9"
1010
android:targetSdkVersion="21" />
1111

1212
<application

0 commit comments

Comments
 (0)