Browse Source

Merge branch 'master' of https://github.com/joshblour/react-native-permissions

* 'master' of https://github.com/joshblour/react-native-permissions:
  check permission in the permissionTypes
  Update podspec to include .h & .m files recursivly
Yonah Forst 8 years ago
parent
commit
1439ff20a7
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      ReactNativePermissions.js
  2. 1
    1
      ReactNativePermissions.podspec

+ 1
- 1
ReactNativePermissions.js View File

@@ -58,7 +58,7 @@ class ReactNativePermissions {
58 58
 
59 59
 
60 60
 	getPermissionStatus(permission) {
61
-  	if (RNPTypes.indexOf(permission) >= 0) {
61
+  	if (this.getPermissionTypes().indexOf(permission) >= 0) {
62 62
 			return RNPermissions.getPermissionStatus(permission)
63 63
 		} else {
64 64
 			return Promise.reject(`ReactNativePermissions: ${permission} is not a valid permission type on ${Platform.OS}`)

+ 1
- 1
ReactNativePermissions.podspec View File

@@ -18,5 +18,5 @@ Pod::Spec.new do |s|
18 18
   s.dependency 'React'
19 19
 
20 20
   s.preserve_paths      = 'docs', 'CHANGELOG.md', 'LICENSE', 'package.json', 'ReactNativePermissions.ios.js'
21
-  s.source_files        = '*.{h,m}'
21
+  s.source_files        = '**/*.{h,m}'
22 22
 end