Files
zellyy-finance/ios/App/App/BuildInfoPlugin.m
gpt-engineer-app[bot] 1ce73d9354 Implement BuildInfo plugin for iOS
This commit implements the BuildInfo Capacitor plugin for iOS to retrieve the app version and build number from Info.plist. This resolves an issue where the version information was not being updated on iOS devices due to the absence of a native plugin implementation.
2025-03-23 10:56:42 +00:00

9 lines
212 B
Objective-C

#import <Foundation/Foundation.h>
#import <Capacitor/Capacitor.h>
// 플러그인 메서드 정의
CAP_PLUGIN(BuildInfoPlugin, "BuildInfo",
CAP_PLUGIN_METHOD(getBuildInfo, CAPPluginReturnPromise);
)