This repository has been archived by the owner on Mar 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from googlesamples/release-schur
release-schur
- Loading branch information
Showing
26 changed files
with
1,923 additions
and
1,832 deletions.
There are no files selected for viewing
550 changes: 289 additions & 261 deletions
550
...in/java/com/projecttango/experiments/nativeaugmentedreality/AugmentedRealityActivity.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
...i-example/app/src/main/java/com/projecttango/experiments/nativeaugmentedreality/Util.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* Copyright 2014 Google Inc. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.projecttango.experiments.nativeaugmentedreality; | ||
|
||
import android.util.Log; | ||
import android.content.Context; | ||
import android.database.Cursor; | ||
import android.net.Uri; | ||
|
||
// Util class provides handy utility functions. | ||
public class Util { | ||
|
||
// Checks if the calling app has the specified permission. | ||
// It is recommended that an app check if it has a permission before trying | ||
// to request it; this will save time by avoiding re-requesting permissions | ||
// that have already been granted. | ||
|
||
// @param context The context of the calling app. | ||
// @param permissionType The type of permission to request; either | ||
// PERMISSIONTYPE_MOTION_TRACKING or PERMISSIONTYPE_ADF_LOAD_SAVE. | ||
// @return boolean Whether or not the permission was already granted. | ||
public static boolean hasPermission(Context context, String permissionType){ | ||
Uri uri = Uri.parse("content://com.google.atap.tango.PermissionStatusProvider/" + | ||
permissionType); | ||
Cursor cursor = context.getContentResolver().query(uri, null, null, null, null); | ||
if (cursor == null) { | ||
return false; | ||
} else { | ||
return true; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.