Skip to content

Commit

Permalink
Merge pull request #195 from fluttercommunity/dependency-update
Browse files Browse the repository at this point in the history
Dependency update
  • Loading branch information
juliansteenbakker authored Mar 15, 2022
2 parents 24853e3 + 1638c7e commit fa34845
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 15 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.3.2

- Updated google_api_headers to 1.2.0


## 0.3.1

- Fixed null-pointer which caused the package to crash.
Expand Down
4 changes: 2 additions & 2 deletions example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
compileSdkVersion 31
compileSdkVersion 32

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
Expand All @@ -37,7 +37,7 @@ android {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.yourcompany.example"
minSdkVersion 16
targetSdkVersion 31
targetSdkVersion 32
versionCode 1
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
Expand Down
5 changes: 3 additions & 2 deletions example/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.yourcompany.example">

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

This file was deleted.

4 changes: 2 additions & 2 deletions example/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
buildscript {
ext.kotlin_version = '1.4.32'
ext.kotlin_version = '1.6.10'
repositories {
google()
mavenCentral()
}

dependencies {
classpath 'com.android.tools.build:gradle:7.1.0'
classpath 'com.android.tools.build:gradle:7.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_google_places
description: Google places autocomplete widgets for flutter. No wrapper, use https://pub.dartlang.org/packages/google_maps_webservice
version: 0.3.1
version: 0.3.2
homepage: https://github.com/lejard-h/flutter_google_places

environment:
Expand All @@ -10,7 +10,7 @@ environment:
dependencies:
flutter:
sdk: flutter
google_api_headers: ^1.1.1
google_api_headers: ^1.2.0
google_maps_webservice: ^0.0.20-nullsafety.5
http: ^0.13.4
rxdart: ^0.27.3
Expand Down
1 change: 0 additions & 1 deletion test/flutter_google_places_test.dart

This file was deleted.

0 comments on commit fa34845

Please sign in to comment.