Android samples renaming was done. Icon updated.

pull/2/head
Alexander Smorkalov 13 years ago
parent b3f68d29e7
commit 3a88fc5aa9
  1. 66
      samples/android/15-puzzle/.project
  2. BIN
      samples/android/15-puzzle/res/drawable/icon.png
  3. 2
      samples/android/15-puzzle/res/values/strings.xml
  4. 2
      samples/android/color-blob-detection/.project
  5. 2
      samples/android/color-blob-detection/AndroidManifest.xml
  6. BIN
      samples/android/color-blob-detection/res/drawable-hdpi/ic_launcher.png
  7. BIN
      samples/android/color-blob-detection/res/drawable-ldpi/ic_launcher.png
  8. BIN
      samples/android/color-blob-detection/res/drawable-mdpi/ic_launcher.png
  9. BIN
      samples/android/color-blob-detection/res/drawable-xhdpi/ic_launcher.png
  10. BIN
      samples/android/color-blob-detection/res/drawable/icon.png
  11. 12
      samples/android/color-blob-detection/res/layout/main.xml
  12. 5
      samples/android/color-blob-detection/res/values/strings.xml
  13. 2
      samples/android/face-detection/.project
  14. BIN
      samples/android/face-detection/res/drawable/icon.png
  15. 2
      samples/android/face-detection/res/values/strings.xml
  16. 2
      samples/android/image-manipulations/.project
  17. BIN
      samples/android/image-manipulations/res/drawable/icon.png
  18. 2
      samples/android/image-manipulations/res/values/strings.xml
  19. 66
      samples/android/tutorial-0-androidcamera/.project
  20. BIN
      samples/android/tutorial-0-androidcamera/res/drawable/icon.png
  21. 2
      samples/android/tutorial-0-androidcamera/res/values/strings.xml
  22. 2
      samples/android/tutorial-1-addopencv/.project
  23. BIN
      samples/android/tutorial-1-addopencv/res/drawable/icon.png
  24. 2
      samples/android/tutorial-1-addopencv/res/values/strings.xml
  25. 2
      samples/android/tutorial-2-opencvcamera/.project
  26. BIN
      samples/android/tutorial-2-opencvcamera/res/drawable/icon.png
  27. 2
      samples/android/tutorial-2-opencvcamera/res/values/strings.xml
  28. 2
      samples/android/tutorial-3-native/.project
  29. BIN
      samples/android/tutorial-3-native/res/drawable/icon.png
  30. 2
      samples/android/tutorial-3-native/res/values/strings.xml
  31. 2
      samples/android/tutorial-4-mixed/.project
  32. BIN
      samples/android/tutorial-4-mixed/res/drawable/icon.png
  33. 2
      samples/android/tutorial-4-mixed/res/values/strings.xml

@ -1,33 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Sample - 15-puzzle</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>OpenCV Sample - 15-puzzle</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">OpenCV Sample - 15-puzzle</string>
<string name="app_name">OCV 15 Puzzle</string>
</resources>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>ColorBlobDetection</name>
<name>OpenCV Sample - color-blob-detection</name>
<comment></comment>
<projects>
</projects>

@ -7,7 +7,7 @@
<uses-sdk android:minSdkVersion="8" />
<application
android:icon="@drawable/ic_launcher"
android:icon="@drawable/icon"
android:label="@string/app_name" >
<activity
android:name="org.opencv.samples.colorblobdetect.ColorBlobDetectionActivity"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
</LinearLayout>

@ -1,7 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Hello World, ColorBlobDetectionActivity!</string>
<string name="app_name">ColorBlobDetection</string>
<string name="app_name">OCV Color Blob Detection</string>
</resources>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Sample - face-detection</name>
<name>OpenCV Sample - face-detection</name>
<comment></comment>
<projects>
</projects>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">OpenCV Sample - face-detection</string>
<string name="app_name">OCV Face Detection</string>
</resources>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Sample - image-manipulations</name>
<name>OpenCV Sample - image-manipulations</name>
<comment></comment>
<projects>
</projects>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">OpenCV Sample - image-manipulations</string>
<string name="app_name">OCV Image Manipulations</string>
</resources>

@ -1,33 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Tutorial 0 (Basic) - Android Camera</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>OpenCV Tutorial 0 - Android Camera</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Tutorial 0 (Basic) - Android Camera</string>
<string name="app_name">OCV T0 Android Camera</string>
</resources>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Tutorial 1 (Basic) - Add OpenCV</name>
<name>OpenCV Tutorial 1 - Add OpenCV</name>
<comment></comment>
<projects>
</projects>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Tutorial 1 (Basic) - Add OpenCV</string>
<string name="app_name">OCV T1 Add OpenCV</string>
</resources>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Tutorial 2 (Basic) - Use OpenCV Camera</name>
<name>OpenCV Tutorial 2 - Use OpenCV Camera</name>
<comment></comment>
<projects>
</projects>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Tutorial 2 (Basic) - Use OpenCV Camera</string>
<string name="app_name">OCV T2 Use OpenCV Camera</string>
</resources>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Tutorial 3 (Advanced) - Add Native OpenCV</name>
<name>OpenCV Tutorial 3 - Add Native OpenCV</name>
<comment></comment>
<projects>
</projects>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Tutorial 3 (Advanced) - Add Native OpenCV</string>
<string name="app_name">OCV T3 Add Native OpenCV</string>
</resources>

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Tutorial 4 (Advanced) - Mix Java+Native OpenCV</name>
<name>OpenCV Tutorial 4 - Mix Java+Native OpenCV</name>
<comment></comment>
<projects>
</projects>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Tutorial 4 (Advanced) - Mix Java+Native OpenCV</string>
<string name="app_name">OCV T4 Mix Java+Native OpenCV</string>
</resources>

Loading…
Cancel
Save