File tree Expand file tree Collapse file tree 5 files changed +10
-7
lines changed
image_editor_common/android Expand file tree Collapse file tree 5 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 1
1
.env
2
2
.idea /
3
+ .vscode /
Original file line number Diff line number Diff line change 1
1
buildscript {
2
- ext. kotlin_version = ' 1.6.10 '
2
+ ext. kotlin_version = ' 1.8.0 '
3
3
repositories {
4
4
google()
5
5
mavenCentral()
@@ -26,6 +26,6 @@ subprojects {
26
26
project. evaluationDependsOn(' :app' )
27
27
}
28
28
29
- task clean ( type : Delete ) {
29
+ tasks . register( " clean " , Delete ) {
30
30
delete rootProject. buildDir
31
31
}
Original file line number Diff line number Diff line change 5
5
import FlutterMacOS
6
6
import Foundation
7
7
8
+ import file_selector_macos
8
9
import image_editor_common
9
- import path_provider_macos
10
+ import path_provider_foundation
10
11
11
12
func RegisterGeneratedPlugins( registry: FlutterPluginRegistry ) {
13
+ FileSelectorPlugin . register ( with: registry. registrar ( forPlugin: " FileSelectorPlugin " ) )
12
14
ImageEditorPlugin . register ( with: registry. registrar ( forPlugin: " ImageEditorPlugin " ) )
13
15
PathProviderPlugin . register ( with: registry. registrar ( forPlugin: " PathProviderPlugin " ) )
14
16
}
Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ dependencies:
14
14
image_editor :
15
15
path : ..
16
16
17
- extended_image : ^6.1.0
18
- image_picker : ^0.8.5+3
17
+ extended_image : ^8.0.2
18
+ image_picker : ^1.0.1
19
19
oktoast : ^3.1.5
20
- path_provider : ^2.0.0
20
+ path_provider : ^2.0.15
21
21
image_size_getter : ^2.1.2
22
22
23
23
flutter :
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ group 'com.fluttercandies.image_editor'
2
2
version ' 1.0-SNAPSHOT'
3
3
4
4
buildscript {
5
- ext. kotlin_version = ' 1.6.10 '
5
+ ext. kotlin_version = ' 1.8.0 '
6
6
repositories {
7
7
google()
8
8
mavenCentral()
You can’t perform that action at this time.
0 commit comments