@wisdomgarden/capacitor-plugin-beacon 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (84) hide show
  1. package/README.md +117 -0
  2. package/WisdomgardenCapacitorPluginBeacon.podspec +17 -0
  3. package/android/build.gradle +52 -0
  4. package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  5. package/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  6. package/android/gradle.properties +24 -0
  7. package/android/gradlew +188 -0
  8. package/android/gradlew.bat +100 -0
  9. package/android/proguard-rules.pro +21 -0
  10. package/android/settings.gradle +2 -0
  11. package/android/src/androidTest/java/com/getcapacitor/android/ExampleInstrumentedTest.java +26 -0
  12. package/android/src/main/AndroidManifest.xml +20 -0
  13. package/android/src/main/java/com/wisdomgarden/mobile/beacon/Beacon.java +294 -0
  14. package/android/src/main/java/com/wisdomgarden/mobile/beacon/BeaconUtils.java +118 -0
  15. package/android/src/main/res/layout/bridge_layout_main.xml +15 -0
  16. package/android/src/main/res/values/colors.xml +3 -0
  17. package/android/src/main/res/values/strings.xml +3 -0
  18. package/android/src/main/res/values/styles.xml +3 -0
  19. package/android/src/test/java/com/getcapacitor/ExampleUnitTest.java +18 -0
  20. package/dist/esm/definitions.d.ts +49 -0
  21. package/dist/esm/definitions.js +2 -0
  22. package/dist/esm/definitions.js.map +1 -0
  23. package/dist/esm/index.d.ts +2 -0
  24. package/dist/esm/index.js +3 -0
  25. package/dist/esm/index.js.map +1 -0
  26. package/dist/esm/web.d.ts +25 -0
  27. package/dist/esm/web.js +61 -0
  28. package/dist/esm/web.js.map +1 -0
  29. package/dist/plugin.js +70 -0
  30. package/dist/plugin.js.map +1 -0
  31. package/ios/Plugin/BeaconUtils.swift +103 -0
  32. package/ios/Plugin/Info.plist +30 -0
  33. package/ios/Plugin/Plugin.h +10 -0
  34. package/ios/Plugin/Plugin.m +14 -0
  35. package/ios/Plugin/Plugin.swift +342 -0
  36. package/ios/Plugin.xcodeproj/project.pbxproj +556 -0
  37. package/ios/Plugin.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  38. package/ios/Plugin.xcworkspace/contents.xcworkspacedata +10 -0
  39. package/ios/Plugin.xcworkspace/xcuserdata/peixinliu.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  40. package/ios/PluginTests/Info.plist +22 -0
  41. package/ios/PluginTests/PluginTests.swift +35 -0
  42. package/ios/Podfile +16 -0
  43. package/ios/Podfile.lock +22 -0
  44. package/ios/Pods/Local Podspecs/Capacitor.podspec.json +30 -0
  45. package/ios/Pods/Local Podspecs/CapacitorCordova.podspec.json +22 -0
  46. package/ios/Pods/Manifest.lock +22 -0
  47. package/ios/Pods/Pods.xcodeproj/project.pbxproj +1381 -0
  48. package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/Capacitor.xcscheme +58 -0
  49. package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/CapacitorCordova.xcscheme +58 -0
  50. package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/Pods-Plugin.xcscheme +58 -0
  51. package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/Pods-PluginTests.xcscheme +58 -0
  52. package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/xcschememanagement.plist +39 -0
  53. package/ios/Pods/Target Support Files/Capacitor/Capacitor-Info.plist +26 -0
  54. package/ios/Pods/Target Support Files/Capacitor/Capacitor-dummy.m +5 -0
  55. package/ios/Pods/Target Support Files/Capacitor/Capacitor-prefix.pch +12 -0
  56. package/ios/Pods/Target Support Files/Capacitor/Capacitor-umbrella.h +23 -0
  57. package/ios/Pods/Target Support Files/Capacitor/Capacitor.debug.xcconfig +16 -0
  58. package/ios/Pods/Target Support Files/Capacitor/Capacitor.modulemap +6 -0
  59. package/ios/Pods/Target Support Files/Capacitor/Capacitor.release.xcconfig +16 -0
  60. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist +26 -0
  61. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-dummy.m +5 -0
  62. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch +12 -0
  63. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-umbrella.h +33 -0
  64. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.debug.xcconfig +13 -0
  65. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.modulemap +6 -0
  66. package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.release.xcconfig +13 -0
  67. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist +26 -0
  68. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.markdown +3 -0
  69. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.plist +29 -0
  70. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-dummy.m +5 -0
  71. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-umbrella.h +16 -0
  72. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.debug.xcconfig +14 -0
  73. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.modulemap +6 -0
  74. package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.release.xcconfig +14 -0
  75. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist +26 -0
  76. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.markdown +3 -0
  77. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.plist +29 -0
  78. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-dummy.m +5 -0
  79. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-frameworks.sh +188 -0
  80. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-umbrella.h +16 -0
  81. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.debug.xcconfig +15 -0
  82. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap +6 -0
  83. package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.release.xcconfig +15 -0
  84. package/package.json +64 -0
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "Capacitor",
3
+ "version": "2.5.0",
4
+ "summary": "Capacitor for iOS",
5
+ "social_media_url": "https://twitter.com/capacitorjs",
6
+ "license": "MIT",
7
+ "homepage": "https://capacitorjs.com/",
8
+ "platforms": {
9
+ "ios": "11.0"
10
+ },
11
+ "authors": {
12
+ "Ionic Team": "hi@ionicframework.com"
13
+ },
14
+ "source": {
15
+ "git": "https://github.com/ionic-team/capacitor.git",
16
+ "tag": "2.5.0"
17
+ },
18
+ "source_files": [
19
+ "Capacitor/Capacitor/*.{swift,h,m}",
20
+ "Capacitor/Capacitor/Plugins/*.{swift,h,m}",
21
+ "Capacitor/Capacitor/Plugins/**/*.{swift,h,m}"
22
+ ],
23
+ "dependencies": {
24
+ "CapacitorCordova": [
25
+
26
+ ]
27
+ },
28
+ "swift_versions": "5.0",
29
+ "swift_version": "5.0"
30
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "CapacitorCordova",
3
+ "module_name": "Cordova",
4
+ "version": "2.5.0",
5
+ "summary": "Capacitor Cordova Compatibility Layer",
6
+ "homepage": "https://capacitorjs.com",
7
+ "license": "MIT",
8
+ "authors": {
9
+ "Ionic Team": "hi@ionicframework.com"
10
+ },
11
+ "source": {
12
+ "git": "https://github.com/ionic-team/capacitor",
13
+ "tag": "2.5.0"
14
+ },
15
+ "platforms": {
16
+ "ios": "11.0"
17
+ },
18
+ "source_files": "CapacitorCordova/**/*.{h,m}",
19
+ "public_header_files": "CapacitorCordova/CapacitorCordova/Classes/Public/*.h",
20
+ "requires_arc": true,
21
+ "frameworks": "WebKit"
22
+ }
@@ -0,0 +1,22 @@
1
+ PODS:
2
+ - Capacitor (2.5.0):
3
+ - CapacitorCordova
4
+ - CapacitorCordova (2.5.0)
5
+
6
+ DEPENDENCIES:
7
+ - "Capacitor (from `../node_modules/@capacitor/ios`)"
8
+ - "CapacitorCordova (from `../node_modules/@capacitor/ios`)"
9
+
10
+ EXTERNAL SOURCES:
11
+ Capacitor:
12
+ :path: "../node_modules/@capacitor/ios"
13
+ CapacitorCordova:
14
+ :path: "../node_modules/@capacitor/ios"
15
+
16
+ SPEC CHECKSUMS:
17
+ Capacitor: cf2174bec9bfe65f1c956616ac1d94afcef7d24d
18
+ CapacitorCordova: 03d0a19b737e65c94825b20222c804d5467e1c5e
19
+
20
+ PODFILE CHECKSUM: e66d6fa04b0daaf06d8498d39637adf77139c716
21
+
22
+ COCOAPODS: 1.15.2