Skip to content

Commit 7bd9850

Browse files
committed
[desktop_drop] bump version to 0.7.1
1 parent 6d7ce6f commit 7bd9850

File tree

9 files changed

+68
-28
lines changed

9 files changed

+68
-28
lines changed

packages/desktop_drop/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.7.1
4+
5+
* [Android] Upgrade Android compileSdk and Kotlin version. (#444)
6+
37
## 0.7.0
48

59
[macOS] Robust multi-source drag & drop.

packages/desktop_drop/android/gradle.properties

Lines changed: 0 additions & 3 deletions
This file was deleted.

packages/desktop_drop/android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 0 additions & 7 deletions
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
12
#include "ephemeral/Flutter-Generated.xcconfig"
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
12
#include "ephemeral/Flutter-Generated.xcconfig"
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
platform :osx, '10.15'
2+
3+
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
4+
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
5+
6+
project 'Runner', {
7+
'Debug' => :debug,
8+
'Profile' => :release,
9+
'Release' => :release,
10+
}
11+
12+
def flutter_root
13+
generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'ephemeral', 'Flutter-Generated.xcconfig'), __FILE__)
14+
unless File.exist?(generated_xcode_build_settings_path)
15+
raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure \"flutter pub get\" is executed first"
16+
end
17+
18+
File.foreach(generated_xcode_build_settings_path) do |line|
19+
matches = line.match(/FLUTTER_ROOT\=(.*)/)
20+
return matches[1].strip if matches
21+
end
22+
raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Flutter-Generated.xcconfig, then run \"flutter pub get\""
23+
end
24+
25+
require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
26+
27+
flutter_macos_podfile_setup
28+
29+
target 'Runner' do
30+
use_frameworks!
31+
32+
flutter_install_all_macos_pods File.dirname(File.realpath(__FILE__))
33+
target 'RunnerTests' do
34+
inherit! :search_paths
35+
end
36+
end
37+
38+
post_install do |installer|
39+
installer.pods_project.targets.each do |target|
40+
flutter_additional_macos_build_settings(target)
41+
end
42+
end

packages/desktop_drop/example/macos/Runner.xcodeproj/project.pbxproj

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = "<group>"; };
7070
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = "<group>"; };
7171
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = "<group>"; };
72+
78E0A7A72DC9AD7400C4905E /* FlutterGeneratedPluginSwiftPackage */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = FlutterGeneratedPluginSwiftPackage; path = ephemeral/Packages/FlutterGeneratedPluginSwiftPackage; sourceTree = "<group>"; };
7273
/* End PBXFileReference section */
7374

7475
/* Begin PBXFrameworksBuildPhase section */
@@ -125,6 +126,7 @@
125126
33CEB47122A05771004F2AC0 /* Flutter */ = {
126127
isa = PBXGroup;
127128
children = (
129+
78E0A7A72DC9AD7400C4905E /* FlutterGeneratedPluginSwiftPackage */,
128130
335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */,
129131
33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */,
130132
33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */,
@@ -345,7 +347,7 @@
345347
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
346348
GCC_WARN_UNUSED_FUNCTION = YES;
347349
GCC_WARN_UNUSED_VARIABLE = YES;
348-
MACOSX_DEPLOYMENT_TARGET = 10.14;
350+
MACOSX_DEPLOYMENT_TARGET = 10.15;
349351
MTL_ENABLE_DEBUG_INFO = NO;
350352
SDKROOT = macosx;
351353
SWIFT_COMPILATION_MODE = wholemodule;
@@ -424,7 +426,7 @@
424426
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
425427
GCC_WARN_UNUSED_FUNCTION = YES;
426428
GCC_WARN_UNUSED_VARIABLE = YES;
427-
MACOSX_DEPLOYMENT_TARGET = 10.14;
429+
MACOSX_DEPLOYMENT_TARGET = 10.15;
428430
MTL_ENABLE_DEBUG_INFO = YES;
429431
ONLY_ACTIVE_ARCH = YES;
430432
SDKROOT = macosx;
@@ -471,7 +473,7 @@
471473
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
472474
GCC_WARN_UNUSED_FUNCTION = YES;
473475
GCC_WARN_UNUSED_VARIABLE = YES;
474-
MACOSX_DEPLOYMENT_TARGET = 10.14;
476+
MACOSX_DEPLOYMENT_TARGET = 10.15;
475477
MTL_ENABLE_DEBUG_INFO = NO;
476478
SDKROOT = macosx;
477479
SWIFT_COMPILATION_MODE = wholemodule;

packages/desktop_drop/example/pubspec.lock

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ packages:
6363
path: ".."
6464
relative: true
6565
source: path
66-
version: "0.6.0"
66+
version: "0.7.1"
6767
fake_async:
6868
dependency: transitive
6969
description:
7070
name: fake_async
71-
sha256: "6a95e56b2449df2273fd8c45a662d6947ce1ebb7aafe80e550a3f68297f3cacc"
71+
sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
7272
url: "https://pub.dev"
7373
source: hosted
74-
version: "1.3.2"
74+
version: "1.3.3"
7575
ffi:
7676
dependency: transitive
7777
description:
@@ -115,26 +115,26 @@ packages:
115115
dependency: transitive
116116
description:
117117
name: leak_tracker
118-
sha256: c35baad643ba394b40aac41080300150a4f08fd0fd6a10378f8f7c6bc161acec
118+
sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de"
119119
url: "https://pub.dev"
120120
source: hosted
121-
version: "10.0.8"
121+
version: "11.0.2"
122122
leak_tracker_flutter_testing:
123123
dependency: transitive
124124
description:
125125
name: leak_tracker_flutter_testing
126-
sha256: f8b613e7e6a13ec79cfdc0e97638fddb3ab848452eff057653abd3edba760573
126+
sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
127127
url: "https://pub.dev"
128128
source: hosted
129-
version: "3.0.9"
129+
version: "3.0.10"
130130
leak_tracker_testing:
131131
dependency: transitive
132132
description:
133133
name: leak_tracker_testing
134-
sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3"
134+
sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
135135
url: "https://pub.dev"
136136
source: hosted
137-
version: "3.0.1"
137+
version: "3.0.2"
138138
lints:
139139
dependency: transitive
140140
description:
@@ -320,10 +320,10 @@ packages:
320320
dependency: transitive
321321
description:
322322
name: test_api
323-
sha256: fb31f383e2ee25fbbfe06b40fe21e1e458d14080e3c67e7ba0acfde4df4e0bbd
323+
sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00"
324324
url: "https://pub.dev"
325325
source: hosted
326-
version: "0.7.4"
326+
version: "0.7.6"
327327
universal_platform:
328328
dependency: "direct main"
329329
description:
@@ -336,10 +336,10 @@ packages:
336336
dependency: transitive
337337
description:
338338
name: vector_math
339-
sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803"
339+
sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
340340
url: "https://pub.dev"
341341
source: hosted
342-
version: "2.1.4"
342+
version: "2.2.0"
343343
vm_service:
344344
dependency: transitive
345345
description:
@@ -365,5 +365,5 @@ packages:
365365
source: hosted
366366
version: "1.1.0"
367367
sdks:
368-
dart: ">=3.7.0 <4.0.0"
368+
dart: ">=3.8.0-0 <4.0.0"
369369
flutter: ">=3.24.0"

packages/desktop_drop/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: desktop_drop
22
description: A plugin which allows user dragging files to your flutter desktop applications.
3-
version: 0.7.0
3+
version: 0.7.1
44
homepage: https://github.com/MixinNetwork/flutter-plugins/tree/main/packages/desktop_drop
55

66
environment:

0 commit comments

Comments
 (0)