Skip to content

Commit fa34845

Browse files
Merge pull request #195 from fluttercommunity/dependency-update
Dependency update
2 parents 24853e3 + 1638c7e commit fa34845

File tree

7 files changed

+14
-15
lines changed

7 files changed

+14
-15
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.3.2
2+
3+
- Updated google_api_headers to 1.2.0
4+
5+
16
## 0.3.1
27

38
- Fixed null-pointer which caused the package to crash.

example/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ apply plugin: 'kotlin-android'
2626
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
2727

2828
android {
29-
compileSdkVersion 31
29+
compileSdkVersion 32
3030

3131
sourceSets {
3232
main.java.srcDirs += 'src/main/kotlin'
@@ -37,7 +37,7 @@ android {
3737
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
3838
applicationId "com.yourcompany.example"
3939
minSdkVersion 16
40-
targetSdkVersion 31
40+
targetSdkVersion 32
4141
versionCode 1
4242
versionCode flutterVersionCode.toInteger()
4343
versionName flutterVersionName

example/android/app/src/main/AndroidManifest.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
package="com.yourcompany.example">
23

34
<!-- The INTERNET permission is required for development. Specifically,
45
flutter needs it to communicate with the running application
@@ -12,7 +13,7 @@
1213
additional functionality it is fine to subclass or reimplement
1314
FlutterApplication and put your custom class here. -->
1415
<application
15-
android:label="example"
16+
android:label="flutter_google_places_example"
1617
android:icon="@mipmap/ic_launcher">
1718
<activity
1819
android:name="io.flutter.embedding.android.FlutterActivity"

example/android/app/src/main/kotlin/com/yourcompany/example/MainActivity.kt

Lines changed: 0 additions & 6 deletions
This file was deleted.

example/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
buildscript {
2-
ext.kotlin_version = '1.4.32'
2+
ext.kotlin_version = '1.6.10'
33
repositories {
44
google()
55
mavenCentral()
66
}
77

88
dependencies {
9-
classpath 'com.android.tools.build:gradle:7.1.0'
9+
classpath 'com.android.tools.build:gradle:7.1.2'
1010
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1111
}
1212
}

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_google_places
22
description: Google places autocomplete widgets for flutter. No wrapper, use https://pub.dartlang.org/packages/google_maps_webservice
3-
version: 0.3.1
3+
version: 0.3.2
44
homepage: https://github.com/lejard-h/flutter_google_places
55

66
environment:
@@ -10,7 +10,7 @@ environment:
1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
google_api_headers: ^1.1.1
13+
google_api_headers: ^1.2.0
1414
google_maps_webservice: ^0.0.20-nullsafety.5
1515
http: ^0.13.4
1616
rxdart: ^0.27.3

test/flutter_google_places_test.dart

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)