This example will help you to create face detection application.
Algorithm:
1.) Create a new project by File-> New -> Android Project name it FaceDetectionExample.
2.) Write following into res/values/strings.xml:
1
2
3
4
5
6
7
8
9
10
| <resources> <string name= "app_name" >FaceDetectionExample</string> <string name= "hello_world" >Hello world!</string> <string name= "menu_settings" >Settings</string> |