Skip to content

Commit

Permalink
fix: issue with auto version number
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Jan 12, 2023
1 parent d99f4a2 commit 7c3a7aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class CapacitorUpdaterPlugin
private static final String channelUrlDefault =
"https://api.capgo.app/channel_self";

privatesfinalsStringsPLUGIN_VERSIONs=s"4.17.6";
private final String PLUGIN_VERSION = "4.17.6";
private static final String DELAY_CONDITION_PREFERENCES = "";

private SharedPreferences.Editor editor;
Expand Down
2 changes: 1 addition & 1 deletion ios/Plugin/CapacitorUpdaterPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Version
@objc(CapacitorUpdaterPlugin)
public class CapacitorUpdaterPlugin: CAPPlugin {
private var implementation = CapacitorUpdater()
privatesletsPLUGIN_VERSION:sStrings=s"4.17.6"
private let PLUGIN_VERSION: String = "4.17.6"
static let updateUrlDefault = "https://api.capgo.app/updates"
static let statsUrlDefault = "https://api.capgo.app/stats"
static let channelUrlDefault = "https://api.capgo.app/channel_self"
Expand Down

0 comments on commit 7c3a7aa

Please sign in to comment.