Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
84856fa2
Commit
84856fa2
authored
Oct 22, 2012
by
Alexander Smorkalov
Committed by
Andrey Kamaev
Oct 23, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CMakeLists.txt rescued. Androidmanifest unified.
parent
a5ee07d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
5 deletions
+15
-5
AndroidManifest.xml
samples/android/15-puzzle/AndroidManifest.xml
+9
-5
CMakeLists.txt
samples/android/15-puzzle/CMakeLists.txt
+6
-0
No files found.
samples/android/15-puzzle/AndroidManifest.xml
View file @
84856fa2
...
...
@@ -3,10 +3,6 @@
android:versionCode=
"1"
android:versionName=
"1.0"
>
<uses-permission
android:name=
"android.permission.CAMERA"
required=
"false"
/>
<uses-feature
android:name=
"android.hardware.camera"
required=
"false"
/>
<uses-feature
android:name=
"android.hardware.camera.autofocus"
required=
"false"
/>
<uses-sdk
android:minSdkVersion=
"8"
/>
<application
...
...
@@ -16,7 +12,9 @@
<activity
android:name=
".Puzzle15Activity"
android:label=
"@string/app_name"
android:configChanges =
"keyboardHidden|orientation"
>
android:screenOrientation=
"landscape"
android:configChanges=
"keyboardHidden|orientation"
>
<intent-filter>
<action
android:name=
"android.intent.action.MAIN"
/>
...
...
@@ -25,4 +23,9 @@
</activity>
</application>
<uses-feature
android:name=
"android.hardware.camera"
android:required=
"false"
/>
<uses-feature
android:name=
"android.hardware.camera.autofocus"
android:required=
"false"
/>
<uses-feature
android:name=
"android.hardware.camera.front"
android:required=
"false"
/>
<uses-feature
android:name=
"android.hardware.camera.front.autofocus"
android:required=
"false"
/>
</manifest>
\ No newline at end of file
samples/android/15-puzzle/CMakeLists.txt
0 → 100644
View file @
84856fa2
set
(
sample example-15-puzzle
)
add_android_project
(
${
sample
}
"
${
CMAKE_CURRENT_SOURCE_DIR
}
"
LIBRARY_DEPS
${
OpenCV_BINARY_DIR
}
SDK_TARGET 11
${
ANDROID_SDK_TARGET
}
)
if
(
TARGET
${
sample
}
)
add_dependencies
(
opencv_android_examples
${
sample
}
)
endif
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment