Skip to content

Commit

Permalink
issue(#231) Remove find android device setting from Nimble
Browse files Browse the repository at this point in the history
  • Loading branch information
Kristalev committed Dec 20, 2022
1 parent 90353b6 commit bdd649a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 16 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
.build
Package.resolved
xcuserdata
.swiftpm

# User defined plugins
NimblePlugins
Expand Down
7 changes: 3 additions & 4 deletions Nimble/Sources/Controls/ConsoleView.xib
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="21225" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="21507" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
<dependencies>
<deployment identifier="macosx"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="21225"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="21507"/>
<capability name="Image references" minToolsVersion="12.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
Expand Down Expand Up @@ -58,7 +57,7 @@
<rect key="frame" x="0.0" y="0.0" width="359" height="178"/>
<subviews>
<popUpButton translatesAutoresizingMaskIntoConstraints="NO" id="6sq-ed-dLL">
<rect key="frame" x="-5" y="140" width="21" height="38"/>
<rect key="frame" x="275" y="140" width="21" height="38"/>
<constraints>
<constraint firstAttribute="height" constant="38" id="qDc-J3-9lP"/>
<constraint firstAttribute="width" constant="300" id="rD1-bj-TLf"/>
Expand Down
10 changes: 0 additions & 10 deletions Plugins/BuildSystem/Sources/Commands.swift
Original file line number Diff line number Diff line change
Expand Up @@ -148,16 +148,6 @@ final class CleanAll: BuildSystemCommand {
}
}

final class UpdateBuildSystem: Command {
init() {
super.init(name: "Find Android Device", menuPath: "Tools")
}

override func run(in workbench: Workbench) {
guard let project = workbench.project else { return }
BuildSystemsManager.shared.projectFoldersDidChange(project)
}
}

// MARK: - Select target

Expand Down
2 changes: 0 additions & 2 deletions Plugins/BuildSystem/Sources/Plugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,6 @@ final class BuildSystemPlugin: Plugin {
alignment: .left(orderPriority: 10))

CommandManager.shared.register(command: SelectTarget())

CommandManager.shared.register(command: UpdateBuildSystem())
}

@objc func validateMenuItem(_ item: NSMenuItem?) -> Bool {
Expand Down

0 comments on commit bdd649a

Please sign in to comment.