@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.
- package/README.md +117 -0
- package/WisdomgardenCapacitorPluginBeacon.podspec +17 -0
- package/android/build.gradle +52 -0
- package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +5 -0
- package/android/gradle.properties +24 -0
- package/android/gradlew +188 -0
- package/android/gradlew.bat +100 -0
- package/android/proguard-rules.pro +21 -0
- package/android/settings.gradle +2 -0
- package/android/src/androidTest/java/com/getcapacitor/android/ExampleInstrumentedTest.java +26 -0
- package/android/src/main/AndroidManifest.xml +20 -0
- package/android/src/main/java/com/wisdomgarden/mobile/beacon/Beacon.java +294 -0
- package/android/src/main/java/com/wisdomgarden/mobile/beacon/BeaconUtils.java +118 -0
- package/android/src/main/res/layout/bridge_layout_main.xml +15 -0
- package/android/src/main/res/values/colors.xml +3 -0
- package/android/src/main/res/values/strings.xml +3 -0
- package/android/src/main/res/values/styles.xml +3 -0
- package/android/src/test/java/com/getcapacitor/ExampleUnitTest.java +18 -0
- package/dist/esm/definitions.d.ts +49 -0
- package/dist/esm/definitions.js +2 -0
- package/dist/esm/definitions.js.map +1 -0
- package/dist/esm/index.d.ts +2 -0
- package/dist/esm/index.js +3 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/web.d.ts +25 -0
- package/dist/esm/web.js +61 -0
- package/dist/esm/web.js.map +1 -0
- package/dist/plugin.js +70 -0
- package/dist/plugin.js.map +1 -0
- package/ios/Plugin/BeaconUtils.swift +103 -0
- package/ios/Plugin/Info.plist +30 -0
- package/ios/Plugin/Plugin.h +10 -0
- package/ios/Plugin/Plugin.m +14 -0
- package/ios/Plugin/Plugin.swift +342 -0
- package/ios/Plugin.xcodeproj/project.pbxproj +556 -0
- package/ios/Plugin.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
- package/ios/Plugin.xcworkspace/contents.xcworkspacedata +10 -0
- package/ios/Plugin.xcworkspace/xcuserdata/peixinliu.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/PluginTests/Info.plist +22 -0
- package/ios/PluginTests/PluginTests.swift +35 -0
- package/ios/Podfile +16 -0
- package/ios/Podfile.lock +22 -0
- package/ios/Pods/Local Podspecs/Capacitor.podspec.json +30 -0
- package/ios/Pods/Local Podspecs/CapacitorCordova.podspec.json +22 -0
- package/ios/Pods/Manifest.lock +22 -0
- package/ios/Pods/Pods.xcodeproj/project.pbxproj +1381 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/Capacitor.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/CapacitorCordova.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/Pods-Plugin.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/Pods-PluginTests.xcscheme +58 -0
- package/ios/Pods/Pods.xcodeproj/xcuserdata/peixinliu.xcuserdatad/xcschemes/xcschememanagement.plist +39 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-Info.plist +26 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-dummy.m +5 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-prefix.pch +12 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor-umbrella.h +23 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.debug.xcconfig +16 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.modulemap +6 -0
- package/ios/Pods/Target Support Files/Capacitor/Capacitor.release.xcconfig +16 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist +26 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-dummy.m +5 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch +12 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-umbrella.h +33 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.debug.xcconfig +13 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.modulemap +6 -0
- package/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.release.xcconfig +13 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist +26 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.markdown +3 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.plist +29 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-dummy.m +5 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-umbrella.h +16 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.debug.xcconfig +14 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.modulemap +6 -0
- package/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.release.xcconfig +14 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist +26 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.markdown +3 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.plist +29 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-dummy.m +5 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-frameworks.sh +188 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-umbrella.h +16 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.debug.xcconfig +15 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap +6 -0
- package/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.release.xcconfig +15 -0
- 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
|