@capacitor/device 6.0.0-alpha.2 → 6.0.0-beta.0

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.
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
10
10
  s.homepage = 'https://capacitorjs.com'
11
11
  s.author = package['author']
12
12
  s.source = { :git => 'https://github.com/ionic-team/capacitor-plugins.git', :tag => package['name'] + '@' + package['version'] }
13
- s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}', 'device/ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
13
+ s.source_files = 'ios/Sources/**/*.{swift,h,m,c,cc,mm,cpp}', 'device/ios/Sources/**/*.{swift,h,m,c,cc,mm,cpp}'
14
14
  s.ios.deployment_target = '13.0'
15
15
  s.dependency 'Capacitor'
16
16
  s.swift_version = '5.1'
package/Package.swift ADDED
@@ -0,0 +1,28 @@
1
+ // swift-tools-version: 5.9
2
+ import PackageDescription
3
+
4
+ let package = Package(
5
+ name: "CapacitorDevice",
6
+ platforms: [.iOS(.v13)],
7
+ products: [
8
+ .library(
9
+ name: "DevicePlugin",
10
+ targets: ["DevicePlugin"])
11
+ ],
12
+ dependencies: [
13
+ .package(url: "https://github.com/ionic-team/capacitor6-spm-test.git", branch: "main")
14
+ ],
15
+ targets: [
16
+ .target(
17
+ name: "DevicePlugin",
18
+ dependencies: [
19
+ .product(name: "Capacitor", package: "capacitor6-spm-test"),
20
+ .product(name: "Cordova", package: "capacitor6-spm-test")
21
+ ],
22
+ path: "ios/Sources/DevicePlugin"),
23
+ .testTarget(
24
+ name: "DevicePluginTests",
25
+ dependencies: ["DevicePlugin"],
26
+ path: "ios/Tests/DevicePluginTests")
27
+ ]
28
+ )
@@ -15,7 +15,7 @@ buildscript {
15
15
  }
16
16
  }
17
17
  dependencies {
18
- classpath 'com.android.tools.build:gradle:8.2.0-rc02'
18
+ classpath 'com.android.tools.build:gradle:8.2.0'
19
19
  if (System.getenv("CAP_PLUGIN_PUBLISH") == "true") {
20
20
  classpath 'io.github.gradle-nexus:publish-plugin:1.3.0'
21
21
  }
@@ -2,7 +2,16 @@ import Foundation
2
2
  import Capacitor
3
3
 
4
4
  @objc(DevicePlugin)
5
- public class DevicePlugin: CAPPlugin {
5
+ public class DevicePlugin: CAPPlugin, CAPBridgedPlugin {
6
+ public let identifier = "DevicePlugin"
7
+ public let jsName = "Device"
8
+ public let pluginMethods: [CAPPluginMethod] = [
9
+ CAPPluginMethod(name: "getId", returnType: CAPPluginReturnPromise),
10
+ CAPPluginMethod(name: "getInfo", returnType: CAPPluginReturnPromise),
11
+ CAPPluginMethod(name: "getBatteryInfo", returnType: CAPPluginReturnPromise),
12
+ CAPPluginMethod(name: "getLanguageCode", returnType: CAPPluginReturnPromise),
13
+ CAPPluginMethod(name: "getLanguageTag", returnType: CAPPluginReturnPromise)
14
+ ]
6
15
  private let implementation = Device()
7
16
 
8
17
  @objc func getId(_ call: CAPPluginCall) {
@@ -0,0 +1,12 @@
1
+ import XCTest
2
+ @testable import DevicePlugin
3
+
4
+ final class DevicePluginTests: XCTestCase {
5
+ func testExample() throws {
6
+ // XCTest Documentation
7
+ // https://developer.apple.com/documentation/xctest
8
+
9
+ // Defining Test Cases and Test Methods
10
+ // https://developer.apple.com/documentation/xctest/defining_test_cases_and_test_methods
11
+ }
12
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/device",
3
- "version": "6.0.0-alpha.2",
3
+ "version": "6.0.0-beta.0",
4
4
  "description": "The Device API exposes internal information about the device, such as the model and operating system version, along with user information such as unique ids.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -10,7 +10,9 @@
10
10
  "android/src/main/",
11
11
  "android/build.gradle",
12
12
  "dist/",
13
- "ios/Plugin/",
13
+ "ios/Sources",
14
+ "ios/Tests",
15
+ "Package.swift",
14
16
  "CapacitorDevice.podspec"
15
17
  ],
16
18
  "author": "Ionic <hi@ionicframework.com>",
@@ -30,7 +32,7 @@
30
32
  "scripts": {
31
33
  "test": "uvu -r esm -r ts-node/register src/__tests__",
32
34
  "verify": "npm run verify:ios && npm run verify:android && npm run verify:web",
33
- "verify:ios": "cd ios && pod install && xcodebuild -workspace Plugin.xcworkspace -scheme Plugin -destination generic/platform=iOS && cd ..",
35
+ "verify:ios": "xcodebuild build -scheme CapacitorDevice -sdk iphonesimulator17.0 -destination 'OS=17.0,name=iPhone 15'",
34
36
  "verify:android": "cd android && ./gradlew clean build test && cd ..",
35
37
  "verify:web": "npm run build && npm test",
36
38
  "lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",
@@ -83,5 +85,5 @@
83
85
  "publishConfig": {
84
86
  "access": "public"
85
87
  },
86
- "gitHead": "af95940154b4286542e776f348c58faccbf16803"
88
+ "gitHead": "6e31d104334377cbaafe67a1fe58e252dba79c04"
87
89
  }
@@ -1,10 +0,0 @@
1
- #import <UIKit/UIKit.h>
2
-
3
- //! Project version number for Plugin.
4
- FOUNDATION_EXPORT double PluginVersionNumber;
5
-
6
- //! Project version string for Plugin.
7
- FOUNDATION_EXPORT const unsigned char PluginVersionString[];
8
-
9
- // In this header, you should import all the public headers of your framework using statements like #import <Plugin/PublicHeader.h>
10
-
@@ -1,12 +0,0 @@
1
- #import <Foundation/Foundation.h>
2
- #import <Capacitor/Capacitor.h>
3
-
4
- // Define the plugin using the CAP_PLUGIN Macro, and
5
- // each method the plugin supports using the CAP_PLUGIN_METHOD macro.
6
- CAP_PLUGIN(DevicePlugin, "Device",
7
- CAP_PLUGIN_METHOD(getId, CAPPluginReturnPromise);
8
- CAP_PLUGIN_METHOD(getInfo, CAPPluginReturnPromise);
9
- CAP_PLUGIN_METHOD(getBatteryInfo, CAPPluginReturnPromise);
10
- CAP_PLUGIN_METHOD(getLanguageCode, CAPPluginReturnPromise);
11
- CAP_PLUGIN_METHOD(getLanguageTag, CAPPluginReturnPromise);
12
- )
@@ -1,24 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>CFBundleDevelopmentRegion</key>
6
- <string>$(DEVELOPMENT_LANGUAGE)</string>
7
- <key>CFBundleExecutable</key>
8
- <string>$(EXECUTABLE_NAME)</string>
9
- <key>CFBundleIdentifier</key>
10
- <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11
- <key>CFBundleInfoDictionaryVersion</key>
12
- <string>6.0</string>
13
- <key>CFBundleName</key>
14
- <string>$(PRODUCT_NAME)</string>
15
- <key>CFBundlePackageType</key>
16
- <string>FMWK</string>
17
- <key>CFBundleShortVersionString</key>
18
- <string>1.0</string>
19
- <key>CFBundleVersion</key>
20
- <string>$(CURRENT_PROJECT_VERSION)</string>
21
- <key>NSPrincipalClass</key>
22
- <string></string>
23
- </dict>
24
- </plist>