File tree Expand file tree Collapse file tree 6 files changed +13
-14
lines changed
packages/palette_generator/example/android Expand file tree Collapse file tree 6 files changed +13
-14
lines changed Original file line number Diff line number Diff line change @@ -22,15 +22,12 @@ apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
22
22
android {
23
23
compileSdkVersion flutter. compileSdkVersion
24
24
25
- lintOptions {
26
- disable ' InvalidPackage'
27
- }
28
25
29
26
defaultConfig {
30
27
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
31
28
applicationId " io.flutter.packages.palettegenerator.imagecolors"
32
- minSdkVersion 16
33
- targetSdkVersion 27
29
+ minSdkVersion 19
30
+ targetSdkVersion 33
34
31
versionCode 1
35
32
versionName flutterVersionName
36
33
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
@@ -43,6 +40,10 @@ android {
43
40
signingConfig signingConfigs. debug
44
41
}
45
42
}
43
+ namespace ' io.flutter.packages.palettegenerator.imagecolors'
44
+ lint {
45
+ disable ' InvalidPackage'
46
+ }
46
47
}
47
48
48
49
flutter {
Original file line number Diff line number Diff line change 1
- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
2
- package =" io.flutter.packages.palettegenerator.imagecolors" >
1
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
3
2
<!-- Flutter needs it to communicate with the running application
4
3
to allow setting breakpoints, to provide hot reload, etc.
5
4
-->
Original file line number Diff line number Diff line change 1
- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
2
- package =" io.flutter.packages.palettegenerator.imagecolors" >
1
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
3
2
4
3
<!-- The INTERNET permission is required for development. Specifically,
5
4
flutter needs it to communicate with the running application
16
15
android : theme =" @style/LaunchTheme"
17
16
android : configChanges =" orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
18
17
android : hardwareAccelerated =" true"
18
+ android : exported =" true"
19
19
android : windowSoftInputMode =" adjustResize" >
20
20
<!-- This keeps the window background of the activity showing
21
21
until Flutter renders its first frame. It can be removed if
Original file line number Diff line number Diff line change 1
- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
2
- package =" io.flutter.packages.palettegenerator.imagecolors" >
1
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
3
2
<!-- Flutter needs it to communicate with the running application
4
3
to allow setting breakpoints, to provide hot reload, etc.
5
4
-->
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ buildscript {
5
5
}
6
6
7
7
dependencies {
8
- classpath ' com.android.tools.build:gradle:3.5.0 '
8
+ classpath ' com.android.tools.build:gradle:7.4.2 '
9
9
}
10
10
}
11
11
@@ -24,6 +24,6 @@ subprojects {
24
24
project. evaluationDependsOn(' :app' )
25
25
}
26
26
27
- task clean ( type : Delete ) {
27
+ tasks . register( " clean " , Delete ) {
28
28
delete rootProject. buildDir
29
29
}
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-5.4 .1-all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.6 .1-all.zip
You can’t perform that action at this time.
0 commit comments