File tree 5 files changed +28
-10
lines changed
packages/image_picker_plus
5 files changed +28
-10
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ android {
52
52
applicationId " com.emilzulufov.flutter_instagram_offline_first_clone"
53
53
// You can update the following values to match your application needs.
54
54
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
55
- minSdk 21
55
+ minSdk 24
56
56
targetSdk 34
57
57
versionCode flutterVersionCode. toInteger()
58
58
versionName flutterVersionName
Original file line number Diff line number Diff line change @@ -7,12 +7,30 @@ allprojects {
7
7
8
8
rootProject. buildDir = ' ../build'
9
9
subprojects {
10
+ afterEvaluate { project ->
11
+ if (project. extensions. findByName(" android" ) != null ) {
12
+ Integer pluginCompileSdk = project. android. compileSdk
13
+ if (pluginCompileSdk != null && pluginCompileSdk < 31 ) {
14
+ project. logger. error(
15
+ " Warning: Overriding compileSdk version in Flutter plugin: "
16
+ + project. name
17
+ + " from "
18
+ + pluginCompileSdk
19
+ + " to 31 (to work around https://issuetracker.google.com/issues/199180389)."
20
+ + " \n If there is not a new version of " + project. name + " , consider filing an issue against "
21
+ + project. name
22
+ + " to increase their compileSdk to the latest (otherwise try updating to the latest version)."
23
+ )
24
+ project. android {
25
+ compileSdk 31
26
+ }
27
+ }
28
+ }
29
+ }
30
+
10
31
project. buildDir = " ${ rootProject.buildDir} /${ project.name} "
32
+ project. evaluationDependsOn(" :app" )
11
33
}
12
- subprojects {
13
- project. evaluationDependsOn(' :app' )
14
- }
15
-
16
34
tasks. register(" clean" , Delete ) {
17
35
delete rootProject. buildDir
18
36
}
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ pluginManagement {
19
19
plugins {
20
20
id " dev.flutter.flutter-plugin-loader" version " 1.0.0"
21
21
id " com.android.application" version " 7.3.0" apply false
22
- id " org.jetbrains.kotlin.android" version " 1.7 .10" apply false
23
- id " com.google.gms.google-services" version " 4.3.14" apply false
22
+ id " org.jetbrains.kotlin.android" version " 2.0 .10" apply false
23
+ id " com.google.gms.google-services" version " 4.3.14" apply false
24
24
}
25
25
26
26
include " :app"
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ dependencies:
16
16
image : ^4.0.17
17
17
video_player : ^2.7.0
18
18
image_picker : ^1.0.1
19
- insta_assets_crop : ^0.0.2
19
+ insta_assets_crop : ^0.0.3
20
20
cached_memory_image : ^1.5.0
21
21
intl : any
22
22
visibility_detector : ^0.4.0+2
Original file line number Diff line number Diff line change @@ -1095,10 +1095,10 @@ packages:
1095
1095
dependency: transitive
1096
1096
description:
1097
1097
name: insta_assets_crop
1098
- sha256: "800ba2e5ececd170a70da573e3d94460c9abf50621335c859e8155c6b592b460"
1098
+ sha256: c6ca1786b19e0d270843346c8205b1e90418f0c5146a8a4476ba618f768b0e89
1099
1099
url: "https://pub.dev"
1100
1100
source: hosted
1101
- version: "0.0.2 "
1101
+ version: "0.0.3 "
1102
1102
insta_blocks:
1103
1103
dependency: "direct main"
1104
1104
description:
You can’t perform that action at this time.
0 commit comments