Skip to content

Commit 29c7510

Browse files
authored
Upgrade gradle to 7.4.2 (#268)
1 parent 5868585 commit 29c7510

File tree

7 files changed

+15
-16
lines changed

7 files changed

+15
-16
lines changed

android/app/build.gradle

+8-6
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ properties.load(project.rootProject.file('local.properties').newDataInputStream(
3737
def googlemapsKey = properties.getProperty('googlemaps.Key', System.getenv('GOOGLE_MAPS_KEY') ?: '')
3838

3939
android {
40+
namespace 'com.example.mosquito_alert_app'
4041
compileSdkVersion 34
4142

4243
compileOptions {
@@ -48,15 +49,10 @@ android {
4849
main.java.srcDirs += 'src/main/kotlin'
4950
}
5051

51-
lintOptions {
52-
disable 'InvalidPackage'
53-
checkReleaseBuilds false
54-
abortOnError false
55-
}
5652

5753
defaultConfig {
5854
applicationId "ceab.movelab.tigatrapp"
59-
minSdkVersion flutter.minSdkVersion
55+
minSdkVersion 24
6056
targetSdkVersion 34
6157
versionCode flutterVersionCode.toInteger()
6258
versionName flutterVersionName
@@ -84,6 +80,12 @@ android {
8480
shrinkResources false
8581
}
8682
}
83+
84+
lint {
85+
abortOnError false
86+
checkReleaseBuilds false
87+
disable 'InvalidPackage'
88+
}
8789
}
8890

8991
flutter {

android/app/src/debug/AndroidManifest.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example.mosquito_alert_app">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<!-- Flutter needs it to communicate with the running application
43
to allow setting breakpoints, to provide hot reload, etc.
54
-->

android/app/src/main/AndroidManifest.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
xmlns:tools="http://schemas.android.com/tools"
3-
package="com.example.mosquito_alert_app">
2+
xmlns:tools="http://schemas.android.com/tools">
43

54
<uses-permission android:name="android.permission.INTERNET"/>
65
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

android/app/src/profile/AndroidManifest.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example.mosquito_alert_app">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<!-- Flutter needs it to communicate with the running application
43
to allow setting breakpoints, to provide hot reload, etc.
54
-->

android/settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pluginManagement {
1818

1919
plugins {
2020
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
21-
id "com.android.application" version "7.3.0" apply false
21+
id "com.android.application" version '7.4.2' apply false
2222
id "org.jetbrains.kotlin.android" version "2.0.10" apply false
2323
id "com.google.gms.google-services" version "4.3.3" apply false
2424
}

pubspec.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -614,10 +614,10 @@ packages:
614614
dependency: "direct main"
615615
description:
616616
name: http
617-
sha256: "759d1a329847dd0f39226c688d3e06a6b8679668e350e2891a6474f8b4bb8525"
617+
sha256: fe7ab022b76f3034adc518fb6ea04a82387620e19977665ea18d30a1cf43442f
618618
url: "https://pub.dev"
619619
source: hosted
620-
version: "1.1.0"
620+
version: "1.3.0"
621621
http_multi_server:
622622
dependency: transitive
623623
description:

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies:
1616
path: ^1.8.1
1717
uuid: ^4.1.0
1818
shared_preferences: ^2.2.3
19-
http: ^1.1.0
19+
http: ^1.2.2
2020
random_string: ^2.3.1
2121
geolocator: ^11.1.0
2222
geocoding: ^3.0.0

0 commit comments

Comments
 (0)