File tree 6 files changed +79
-2
lines changed
6 files changed +79
-2
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ description = "Flutter 3.13.x" ;
3
+ inputs = {
4
+ nixpkgs . url = "github:NixOS/nixpkgs/23.11" ;
5
+ flake-utils . url = "github:numtide/flake-utils" ;
6
+ } ;
7
+ outputs = { self , nixpkgs , flake-utils } :
8
+ flake-utils . lib . eachDefaultSystem ( system :
9
+ let
10
+ pkgs = import nixpkgs {
11
+ inherit system ;
12
+ config = {
13
+ android_sdk . accept_license = true ;
14
+ allowUnfree = true ;
15
+ } ;
16
+ } ;
17
+ androidSdk = pkgs . androidenv . androidPkgs_9_0 . androidsdk ;
18
+ in
19
+ {
20
+ devShell =
21
+ with pkgs ; mkShell rec {
22
+ ANDROID_SDK_ROOT = "${ androidSdk } /libexec/android-sdk" ;
23
+ buildInputs = [
24
+ flutter
25
+ androidSdk
26
+ jdk17
27
+ ] ;
28
+ } ;
29
+ } ) ;
30
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ description = "Flutter" ;
3
+ inputs = {
4
+ nixpkgs-unstable . url = "github:NixOS/nixpkgs/master" ;
5
+ flake-utils . url = "github:numtide/flake-utils" ;
6
+ } ;
7
+ outputs = { self , nixpkgs-unstable , flake-utils } :
8
+ flake-utils . lib . eachDefaultSystem ( system :
9
+ let
10
+ pkgs = import nixpkgs-unstable {
11
+ inherit system ;
12
+ config = {
13
+ android_sdk . accept_license = true ;
14
+ allowUnfree = true ;
15
+ } ;
16
+ } ;
17
+ buildToolsVersion = "33.0.2" ;
18
+ androidComposition = pkgs . androidenv . composeAndroidPackages {
19
+ buildToolsVersions = [ buildToolsVersion ] ;
20
+ platformVersions = [ "33" ] ;
21
+ abiVersions = [ "arm64-v8a" ] ;
22
+ } ;
23
+ androidSdk = androidComposition . androidsdk ;
24
+ in
25
+ {
26
+ devShell =
27
+ with pkgs ; mkShell rec {
28
+ ANDROID_SDK_ROOT = "${ androidSdk } /libexec/android-sdk" ;
29
+ buildInputs = [
30
+ flutter
31
+ androidSdk
32
+ jdk11
33
+ ] ;
34
+ } ;
35
+ } ) ;
36
+ }
Original file line number Diff line number Diff line change
1
+ # v5.2.0-beta.10
2
+
3
+ ## Fixed
4
+ - update normalize dependency to version 0.9.1 (#1448 ) ([ commit] ( https://github.com/zino-hofmann/graphql-flutter/commit/9e21fd5c0d951f2a24d9646f548202c7f47807f7 ) ). @nrbnlulu 11-09-2024
5
+ - upgrade web_socket_channel, dart sdk dependencies. Update tests to ignore missing closeCode ([ commit] ( 651d75cc46082f30c91760fac25def88e6baa12a ) )
6
+
1
7
# v5.2.0-beta.9
2
8
3
9
## Fixed
Original file line number Diff line number Diff line change 1
1
{
2
2
"package_name" : " graphql" ,
3
- "version" : " v5.2.0-beta.9 " ,
3
+ "version" : " v5.2.0-beta.10 " ,
4
4
"api" : {
5
5
"name" : " github" ,
6
6
"repository" : " zino-hofmann/graphql-flutter" ,
Original file line number Diff line number Diff line change
1
+ # v5.2.0-beta.8
2
+
3
+ ## Fixed
4
+ - upgrade meta,path,dart dependencies ([ commit] ( 651d75cc46082f30c91760fac25def88e6baa12a ) )
5
+
1
6
# v5.2.0-beta.7
2
7
3
8
## Fixed
Original file line number Diff line number Diff line change 1
1
{
2
2
"package_name" : " graphql_flutter" ,
3
- "version" : " v5.2.0-beta.7 " ,
3
+ "version" : " v5.2.0-beta.8 " ,
4
4
"api" : {
5
5
"name" : " github" ,
6
6
"repository" : " zino-hofmann/graphql-flutter" ,
You can’t perform that action at this time.
0 commit comments