File tree 10 files changed +21
-15
lines changed
10 files changed +21
-15
lines changed Original file line number Diff line number Diff line change @@ -33,11 +33,11 @@ jobs:
33
33
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
34
34
- uses : actions/checkout@v4
35
35
36
- # Ensures JAVA 11 is installed on the build agent.
36
+ # Ensures JAVA 17 is installed on the build agent.
37
37
- uses : actions/setup-java@v4
38
38
with :
39
39
distribution : ' temurin'
40
- java-version : ' 11 '
40
+ java-version : ' 17 '
41
41
42
42
# Make sure the stable version of Flutter is available
43
43
- uses : subosito/flutter-action@v2
49
49
run : flutter pub get
50
50
working-directory : ${{env.source-directory}}
51
51
52
- # Run Flutter Format to ensure formatting is valid
53
- - name : Run Flutter Format
52
+ # Run Dart Format to ensure formatting is valid
53
+ - name : Run Dart Format
54
54
run : dart format --set-exit-if-changed .
55
55
working-directory : ${{env.source-directory}}
56
56
Original file line number Diff line number Diff line change
1
+ ## 13.0.3
2
+
3
+ - Updates dart sdk to ` sdk: ^3.5.0 `
4
+ - Updates example project and fixes analyzer issues
5
+
1
6
## 13.0.2
2
7
3
8
- Updates dependency on geolocator_apple to version 2.3.8.
Original file line number Diff line number Diff line change @@ -42,11 +42,11 @@ The TL;DR version is:
42
42
android.useAndroidX=true
43
43
android.enableJetifier=true
44
44
```
45
- 2 . Make sure you set the ` compileSdkVersion ` in your "android/app/build.gradle" file to 34 :
45
+ 2 . Make sure you set the ` compileSdkVersion ` in your "android/app/build.gradle" file to 35 :
46
46
47
47
```
48
48
android {
49
- compileSdkVersion 34
49
+ compileSdkVersion 35
50
50
51
51
...
52
52
}
Original file line number Diff line number Diff line change @@ -28,14 +28,14 @@ project.getTasks().withType(JavaCompile) {
28
28
}
29
29
30
30
android {
31
- compileSdkVersion 34
31
+ compileSdkVersion flutter . compileSdkVersion
32
32
33
33
34
34
defaultConfig {
35
35
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
36
36
applicationId " com.baseflow.geolocator_example"
37
37
minSdkVersion flutter. minSdkVersion
38
- targetSdkVersion 30
38
+ targetSdkVersion flutter . targetSdkVersion
39
39
versionCode flutterVersionCode. toInteger()
40
40
versionName flutterVersionName
41
41
}
Original file line number Diff line number Diff line change 19
19
android : theme =" @style/LaunchTheme"
20
20
android : configChanges =" orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
21
21
android : hardwareAccelerated =" true"
22
- android : windowSoftInputMode =" adjustResize" >
22
+ android : windowSoftInputMode =" adjustResize"
23
+ android : exported =" true" >
23
24
<!-- Specifies an Android theme to apply to this Activity as soon as
24
25
the Android process has started. This theme is visible to the user
25
26
while the Flutter UI initializes. After that, this theme continues
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-7.2 -all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.9 -all.zip
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ pluginManagement {
18
18
19
19
plugins {
20
20
id " dev.flutter.flutter-plugin-loader" version " 1.0.0"
21
- id " com.android.application" version " 7.1.2 " apply false
21
+ id " com.android.application" version " 8.7.0 " apply false
22
22
}
23
23
24
24
include " :app"
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ void main() {
17
17
/// Example [Widget] showing the functionalities of the geolocator plugin
18
18
class GeolocatorWidget extends StatefulWidget {
19
19
/// Creates a new GeolocatorWidget.
20
- const GeolocatorWidget ({Key ? key}) : super ( key: key );
20
+ const GeolocatorWidget ({super . key} );
21
21
22
22
/// Utility method to create a page with the Baseflow templating.
23
23
static ExamplePage createPage () {
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ description: Demonstrates how to use the geolocator plugin.
6
6
publish_to : ' none' # Remove this line if you wish to publish to pub.dev
7
7
8
8
environment :
9
- sdk : " >=2.15.0 <3.0.0 "
9
+ sdk : ^3.5.0
10
10
11
11
dependencies :
12
12
baseflow_plugin_template : ^2.1.2
Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ name: geolocator
2
2
description : Geolocation plugin for Flutter. This plugin provides a cross-platform (iOS, Android) API for generic location (GPS etc.) functions.
3
3
repository : https://github.com/baseflow/flutter-geolocator/tree/main/geolocator
4
4
issue_tracker : https://github.com/baseflow/flutter-geolocator/issues?q=is%3Aissue+is%3Aopen
5
- version : 13.0.2
5
+ version : 13.0.3
6
6
7
7
environment :
8
- sdk : " >=2.15.0 <4.0.0 "
8
+ sdk : ^3.5.0
9
9
flutter : " >=2.8.0"
10
10
11
11
flutter :
You can’t perform that action at this time.
0 commit comments