Skip to content

Commit d4ac988

Browse files
committed
Attempt to fix file permissions for adb unzip
1 parent a205a54 commit d4ac988

File tree

5 files changed

+100
-187
lines changed

5 files changed

+100
-187
lines changed

linux/flutter/generated_plugin_registrant.cc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
#include <desktop_drop/desktop_drop_plugin.h>
1010
#include <file_selector_linux/file_selector_plugin.h>
11-
#include <open_file_linux/open_file_linux_plugin.h>
1211

1312
void fl_register_plugins(FlPluginRegistry* registry) {
1413
g_autoptr(FlPluginRegistrar) desktop_drop_registrar =
@@ -17,7 +16,4 @@ void fl_register_plugins(FlPluginRegistry* registry) {
1716
g_autoptr(FlPluginRegistrar) file_selector_linux_registrar =
1817
fl_plugin_registry_get_registrar_for_plugin(registry, "FileSelectorPlugin");
1918
file_selector_plugin_register_with_registrar(file_selector_linux_registrar);
20-
g_autoptr(FlPluginRegistrar) open_file_linux_registrar =
21-
fl_plugin_registry_get_registrar_for_plugin(registry, "OpenFileLinuxPlugin");
22-
open_file_linux_plugin_register_with_registrar(open_file_linux_registrar);
2319
}

linux/flutter/generated_plugins.cmake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
list(APPEND FLUTTER_PLUGIN_LIST
66
desktop_drop
77
file_selector_linux
8-
open_file_linux
98
)
109

1110
list(APPEND FLUTTER_FFI_PLUGIN_LIST

macos/Flutter/GeneratedPluginRegistrant.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,12 @@ import Foundation
77

88
import desktop_drop
99
import file_selector_macos
10-
import open_file_mac
1110
import path_provider_foundation
1211
import shared_preferences_foundation
1312

1413
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
1514
DesktopDropPlugin.register(with: registry.registrar(forPlugin: "DesktopDropPlugin"))
1615
FileSelectorPlugin.register(with: registry.registrar(forPlugin: "FileSelectorPlugin"))
17-
OpenFilePlugin.register(with: registry.registrar(forPlugin: "OpenFilePlugin"))
1816
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
1917
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
2018
}

0 commit comments

Comments
 (0)