Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Build
run: melos run build:example_android
build_example_android_3_19:
name: Build Android example app (3.19)
name: Build Android example app (3.29)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -63,7 +63,7 @@ jobs:
- uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.19.0
flutter-version: 3.29.0
cache: true
cache-key: 'flutter-:os:-:channel:-:version:-:arch:-:hash:'
- name: Install Tools
Expand All @@ -85,14 +85,14 @@ jobs:
- name: Build
run: melos run build:example_ios
build_example_ios_3_19:
name: Build iOS example app (3.19)
name: Build iOS example app (3.29)
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.19.0
flutter-version: 3.29.0
cache: true
cache-key: 'flutter-:os:-:channel:-:version:-:arch:-:hash:'
- name: Install Tools
Expand All @@ -114,14 +114,14 @@ jobs:
- name: Build
run: melos run build:example_macos
build_example_macos_3_19:
name: Build macOS example app (3.19)
name: Build macOS example app (3.29)
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.19.0
flutter-version: 3.29.0
cache: true
cache-key: 'flutter-:os:-:channel:-:version:-:arch:-:hash:'
- name: Install Tools
Expand Down
7 changes: 7 additions & 0 deletions flutter_appauth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [10.0.0]

* **Breaking change** updated minimum supported SDK version to Flutter 3.29/Dart 3.7
* Bumped `flutter_lints` dev dependency
* [Android] **Breaking changes** updated `compileSdkVersion` to 35 and AGP to 8.6.0
* Updated Android setup section in readme with instructions for apps using Kotlin DSL. Thanks to the PR from [LennartMart](https://github.com/LennartMart)

## [9.0.1]

* [iOS][macOS] bumped AppAuth iOS dependency to 2.0.0
Expand Down
4 changes: 2 additions & 2 deletions flutter_appauth/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:8.0.1'
classpath 'com.android.tools.build:gradle:8.6.0'
}
}

Expand All @@ -22,7 +22,7 @@ rootProject.allprojects {
apply plugin: 'com.android.library'

android {
compileSdkVersion 33
compileSdkVersion 35

if (project.android.hasProperty("namespace")) {
namespace 'io.crossingthestreams.flutterappauth'
Expand Down
1 change: 1 addition & 0 deletions flutter_appauth/example/android/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ gradle-wrapper.jar
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java
.cxx/

# Remember to never publicly share your keystore.
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
Expand Down
6 changes: 3 additions & 3 deletions flutter_appauth/example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ android {
ndkVersion flutter.ndkVersion

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}

kotlinOptions {
jvmTarget = '1.8'
jvmTarget = '11'
}

sourceSets {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-all.zip
4 changes: 2 additions & 2 deletions flutter_appauth/example/android/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ pluginManagement {

plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "8.6.0" apply false
id "org.jetbrains.kotlin.android" version "1.7.10" apply false
id("com.android.application") version "8.7.0" apply false
id("org.jetbrains.kotlin.android") version "1.8.22" apply false
}

include ":app"
2 changes: 1 addition & 1 deletion flutter_appauth/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies:
http: ^1.0.0

dev_dependencies:
flutter_lints: ^4.0.0
flutter_lints: ^5.0.0
flutter_test:
sdk: flutter
integration_test:
Expand Down
10 changes: 5 additions & 5 deletions flutter_appauth/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ name: flutter_appauth
description: This plugin provides an abstraction around the Android and iOS
AppAuth SDKs so it can be used to communicate with OAuth 2.0 and OpenID
Connect providers
version: 9.0.1
version: 10.0.0
homepage: https://github.com/MaikuB/flutter_appauth/tree/master/flutter_appauth

environment:
sdk: ^3.3.0
flutter: ">=3.19.0"
sdk: ^3.7.0
flutter: ">=3.29.0"

dependencies:
flutter:
sdk: flutter
flutter_appauth_platform_interface: ^9.0.0
flutter_appauth_platform_interface: ^10.0.0

flutter:
plugin:
Expand All @@ -25,4 +25,4 @@ flutter:
macos:
pluginClass: FlutterAppauthPlugin
dev_dependencies:
flutter_lints: ^4.0.0
flutter_lints: ^5.0.0
6 changes: 6 additions & 0 deletions flutter_appauth_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [10.0.0]

* **Breaking change** updated minimum supported SDK version to Flutter 3.29/Dart 3.7
* Bumped `flutter_lints` dev dependency


## [9.0.0]

* **Breaking change** updated minimum supported SDK version to Flutter 3.19/Dart 3.3
Expand Down
8 changes: 4 additions & 4 deletions flutter_appauth_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
name: flutter_appauth_platform_interface
description: A common platform interface for the flutter_appauth plugin.
version: 9.0.0
version: 10.0.0
homepage: https://github.com/MaikuB/flutter_appauth/tree/master/flutter_appauth_platform_interface

environment:
sdk: ^3.3.0
flutter: ">=3.19.0"
sdk: ^3.7.0
flutter: ">=3.29.0"

dependencies:
flutter:
sdk: flutter
plugin_platform_interface: ^2.0.0

dev_dependencies:
flutter_lints: ^4.0.0
flutter_lints: ^5.0.0
flutter_test:
sdk: flutter
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ name: flutter_appauth_workspace
environment:
sdk: '>=3.0.0 <4.0.0'
dev_dependencies:
flutter_lints: ^3.0.2
flutter_lints: ^5.0.0
melos: ^6.1.0
Loading