Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
VR-demos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nomad-lab
VR-demos
Commits
cc02de0e
Commit
cc02de0e
authored
May 03, 2017
by
Ruben Jesus Garcia Hernandez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for android 7
parent
6f14f462
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
GoogleCardboardAndroid/NOMADgvrT/src/main/AndroidManifest.xml
...leCardboardAndroid/NOMADgvrT/src/main/AndroidManifest.xml
+13
-4
No files found.
GoogleCardboardAndroid/NOMADgvrT/src/main/AndroidManifest.xml
View file @
cc02de0e
...
...
@@ -5,7 +5,8 @@
android:versionName=
"1.20.0"
>
<!-- The GVR SDK requires API 19+ and OpenGL ES 2+. -->
<uses-sdk
android:minSdkVersion=
"19"
android:targetSdkVersion=
"24"
/>
<!--https://inthecheesefactory.com/blog/how-to-share-access-to-file-with-fileprovider-on-android-nougat/en-->
<uses-sdk
android:minSdkVersion=
"19"
android:targetSdkVersion=
"23"
/>
<uses-feature
android:glEsVersion=
"0x00030000"
android:required=
"true"
/>
<!-- Required for vibration feedback when the trigger action is performed. -->
...
...
@@ -26,7 +27,7 @@
<application
android:allowBackup=
"true"
android:label=
"
MainActivity
"
android:label=
"
NOMADgvrT
"
android:theme=
"@style/VrActivityTheme"
>
<activity
android:name=
".MainActivity"
...
...
@@ -59,22 +60,30 @@
<category
android:name=
"com.google.intent.category.CARDBOARD"
/>
</intent-filter>
<!--Test opening a NOMAD url-->
<intent-filter>
<intent-filter
android:label=
"@string/app_name"
>
<action
android:name=
"android.intent.action.VIEW"
/>
<category
android:name=
"android.intent.category.DEFAULT"
/>
<category
android:name=
"android.intent.category.BROWSABLE"
/>
<category
android:name=
"android.intent.category.ALTERNATIVE"
/>
<data
android:scheme=
"file"
/>
<data
android:scheme=
"content"
/>
<data
android:mimeType=
"*/*"
/>
<data
android:pathPattern=
".*\\.ncfg"
/>
<data
android:host=
"*"
/>
</intent-filter>
<intent-filter>
<intent-filter
android:label=
"@string/app_name"
>
<action
android:name=
"android.intent.action.VIEW"
/>
<category
android:name=
"android.intent.category.BROWSABLE"
/>
<category
android:name=
"android.intent.category.DEFAULT"
/>
<data
android:scheme=
"content"
android:pathPattern=
".*\\.ncfg"
android:mimeType=
"application/octet-stream"
/>
</intent-filter>
<intent-filter
android:label=
"@string/app_name"
>
<action
android:name=
"android.intent.action.SEND"
/>
<category
android:name=
"android.intent.category.DEFAULT"
/>
<data
android:scheme=
"content"
android:pathPattern=
".*\\.ncfg"
android:mimeType=
"*/*"
/>
</intent-filter>
<!--http://stackoverflow.com/questions/3760276/android-intent-filter-associate-app-with-file-extension-->
</activity>
</application>
</manifest>
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