Skip to content

Commit ad43837

Browse files
committed
Merge branch 'main' of github.com:flutter/packages into nested-persistent-navigation
# Conflicts: # packages/go_router/CHANGELOG.md # packages/go_router/lib/src/delegate.dart # packages/go_router/lib/src/parser.dart # packages/go_router/pubspec.yaml
2 parents 9983887 + 1502ac0 commit ad43837

File tree

233 files changed

+5907
-2246
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

233 files changed

+5907
-2246
lines changed

.ci/flutter_master.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12b36de8f7ac82a6b2b68ee627fe6c1b4c705cc5
1+
a086c640dcc4362879089d93ad16ce5765c06f62

.ci/flutter_stable.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
90c64ed42ba53a52d18f0cb3b17666c8662ed2a0
1+
4b12645012342076800eb701bcdfe18f87da21cf

.cirrus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,8 +324,8 @@ task:
324324
- name: web_benchmarks_test
325325
env:
326326
matrix:
327-
CHROMIUM_BUILD: "768968" # Chromium 84.0.4147.0
328327
CHROMIUM_BUILD: "950363" # Chromium 98.0.4758.0
328+
CHROMIUM_BUILD: "1097615" # Chromium 111
329329
<< : *INSTALL_CHROME_LINUX
330330
script:
331331
- cd packages/web_benchmarks/testing/test_app

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,4 @@ TheOneWithTheBraid <[email protected]>
7171
Rulong Chen(陈汝龙) <[email protected]>
7272
Hwanseok Kang <[email protected]>
7373
Twin Sun, LLC <[email protected]>
74+
Amir Panahandeh <[email protected]>

README.md

Lines changed: 17 additions & 17 deletions

packages/animations/example/android/app/build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,11 @@ android {
3232
main.java.srcDirs += 'src/main/kotlin'
3333
}
3434

35-
lintOptions {
36-
disable 'InvalidPackage'
37-
}
3835

3936
defaultConfig {
4037
applicationId "dev.flutter.packages.animations.example"
4138
minSdkVersion 16
42-
targetSdkVersion 28
39+
targetSdkVersion 32
4340
versionCode flutterVersionCode.toInteger()
4441
versionName flutterVersionName
4542
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -52,6 +49,10 @@ android {
5249
signingConfig signingConfigs.debug
5350
}
5451
}
52+
namespace 'dev.flutter.packages.animations.example'
53+
lint {
54+
disable 'InvalidPackage'
55+
}
5556
}
5657

5758
flutter {

packages/animations/example/android/app/src/debug/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="dev.flutter.packages.animations.example">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<!-- Flutter needs it to communicate with the running application
43
to allow setting breakpoints, to provide hot reload, etc.
54
-->

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="dev.flutter.packages.animations.example">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<application
43
android:label="example"
54
android:icon="@mipmap/ic_launcher">
65
<activity
76
android:name=".MainActivity"
87
android:launchMode="singleTop"
98
android:theme="@style/LaunchTheme"
9+
android:exported="true"
1010
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
1111
android:hardwareAccelerated="true"
1212
android:windowSoftInputMode="adjustResize">

packages/animations/example/android/app/src/profile/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="dev.flutter.packages.animations.example">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<!-- Flutter needs it to communicate with the running application
43
to allow setting breakpoints, to provide hot reload, etc.
54
-->

packages/animations/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.6.0'
2+
ext.kotlin_version = '1.6.21'
33
repositories {
44
google()
55
mavenCentral()
66
}
77

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

0 commit comments

Comments
 (0)