Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
f777db2b
Unverified
Commit
f777db2b
authored
Jan 22, 2019
by
Jonah Williams
Committed by
GitHub
Jan 22, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add uiMode to android:configChanges (#26896)
parent
af0758e6
Changes
18
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
18 additions
and
18 deletions
+18
-18
AndroidManifest.xml
...s/complex_layout/android/app/src/main/AndroidManifest.xml
+1
-1
AndroidManifest.xml
.../macrobenchmarks/android/app/src/main/AndroidManifest.xml
+1
-1
AndroidManifest.xml
.../microbenchmarks/android/app/src/main/AndroidManifest.xml
+1
-1
AndroidManifest.xml
...n_tests/channels/android/app/src/main/AndroidManifest.xml
+1
-1
AndroidManifest.xml
...ests/external_ui/android/app/src/main/AndroidManifest.xml
+1
-1
AndroidManifest.xml
...on_tests/flavors/android/app/src/main/AndroidManifest.xml
+1
-1
AndroidManifest.xml
...s/named_isolates/android/app/src/main/AndroidManifest.xml
+1
-1
AndroidManifest.xml
dev/manual_tests/android/app/src/main/AndroidManifest.xml
+1
-1
AndroidManifest.xml
examples/catalog/android/app/src/main/AndroidManifest.xml
+1
-1
AndroidManifest.xml
.../flutter_gallery/android/app/src/main/AndroidManifest.xml
+1
-1
AndroidManifest.xml
...les/flutter_view/android/app/src/main/AndroidManifest.xml
+1
-1
AndroidManifest.xml
...ples/hello_world/android/app/src/main/AndroidManifest.xml
+1
-1
AndroidManifest.xml
examples/layers/android/app/src/main/AndroidManifest.xml
+1
-1
AndroidManifest.xml
...platform_channel/android/app/src/main/AndroidManifest.xml
+1
-1
AndroidManifest.xml
...es/platform_view/android/app/src/main/AndroidManifest.xml
+1
-1
AndroidManifest.xml
examples/stocks/android/app/src/main/AndroidManifest.xml
+1
-1
AndroidManifest.xml.tmpl
...es/app/android.tmpl/app/src/main/AndroidManifest.xml.tmpl
+1
-1
AndroidManifest.xml.tmpl
...ost_app_common/app.tmpl/src/main/AndroidManifest.xml.tmpl
+1
-1
No files found.
dev/benchmarks/complex_layout/android/app/src/main/AndroidManifest.xml
View file @
f777db2b
...
...
@@ -7,7 +7,7 @@
<activity
android:name=
"io.flutter.app.FlutterActivity"
android:launchMode=
"singleTop"
android:theme=
"@android:style/Theme.Black.NoTitleBar"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density
|uiMode
"
android:hardwareAccelerated=
"true"
android:windowSoftInputMode=
"adjustResize"
>
<intent-filter>
...
...
dev/benchmarks/macrobenchmarks/android/app/src/main/AndroidManifest.xml
View file @
f777db2b
...
...
@@ -20,7 +20,7 @@
android:name=
".MainActivity"
android:launchMode=
"singleTop"
android:theme=
"@style/LaunchTheme"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density
|uiMode
"
android:hardwareAccelerated=
"true"
android:windowSoftInputMode=
"adjustResize"
>
<!-- This keeps the window background of the activity showing
...
...
dev/benchmarks/microbenchmarks/android/app/src/main/AndroidManifest.xml
View file @
f777db2b
...
...
@@ -7,7 +7,7 @@
<activity
android:name=
"io.flutter.app.FlutterActivity"
android:launchMode=
"singleTop"
android:theme=
"@android:style/Theme.Black.NoTitleBar"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density
|uiMode
"
android:hardwareAccelerated=
"true"
android:windowSoftInputMode=
"adjustResize"
>
<intent-filter>
...
...
dev/integration_tests/channels/android/app/src/main/AndroidManifest.xml
View file @
f777db2b
...
...
@@ -16,7 +16,7 @@
<activity
android:name=
".MainActivity"
android:launchMode=
"singleTop"
android:theme=
"@android:style/Theme.Black.NoTitleBar"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density
|uiMode
"
android:hardwareAccelerated=
"true"
android:windowSoftInputMode=
"adjustResize"
>
<intent-filter>
...
...
dev/integration_tests/external_ui/android/app/src/main/AndroidManifest.xml
View file @
f777db2b
...
...
@@ -9,7 +9,7 @@
<activity
android:name=
".MainActivity"
android:launchMode=
"singleTop"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density
|uiMode
"
android:hardwareAccelerated=
"true"
android:windowSoftInputMode=
"adjustResize"
>
<intent-filter>
...
...
dev/integration_tests/flavors/android/app/src/main/AndroidManifest.xml
View file @
f777db2b
...
...
@@ -9,7 +9,7 @@
<activity
android:name=
".MainActivity"
android:launchMode=
"singleTop"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density
|uiMode
"
android:hardwareAccelerated=
"true"
android:windowSoftInputMode=
"adjustResize"
>
<intent-filter>
...
...
dev/integration_tests/named_isolates/android/app/src/main/AndroidManifest.xml
View file @
f777db2b
...
...
@@ -15,7 +15,7 @@
<activity
android:name=
".MainActivity"
android:launchMode=
"singleTop"
android:theme=
"@style/Theme.AppCompat"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density
|uiMode
"
android:hardwareAccelerated=
"true"
android:windowSoftInputMode=
"adjustResize"
>
<intent-filter>
...
...
dev/manual_tests/android/app/src/main/AndroidManifest.xml
View file @
f777db2b
...
...
@@ -21,7 +21,7 @@
<activity
android:name=
".MainActivity"
android:launchMode=
"singleTop"
android:theme=
"@android:style/Theme.Black.NoTitleBar"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density
|uiMode
"
android:hardwareAccelerated=
"true"
android:windowSoftInputMode=
"adjustResize"
>
<intent-filter>
...
...
examples/catalog/android/app/src/main/AndroidManifest.xml
View file @
f777db2b
...
...
@@ -16,7 +16,7 @@
<activity
android:name=
".MainActivity"
android:launchMode=
"singleTop"
android:theme=
"@android:style/Theme.Black.NoTitleBar"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density
|uiMode
"
android:hardwareAccelerated=
"true"
android:windowSoftInputMode=
"adjustResize"
>
<intent-filter>
...
...
examples/flutter_gallery/android/app/src/main/AndroidManifest.xml
View file @
f777db2b
...
...
@@ -21,7 +21,7 @@
<activity
android:name=
".MainActivity"
android:launchMode=
"singleTop"
android:theme=
"@android:style/Theme.Light.NoTitleBar"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density
|uiMode
"
android:hardwareAccelerated=
"true"
android:windowSoftInputMode=
"adjustResize"
>
<intent-filter>
...
...
examples/flutter_view/android/app/src/main/AndroidManifest.xml
View file @
f777db2b
...
...
@@ -15,7 +15,7 @@
<activity
android:name=
".MainActivity"
android:launchMode=
"singleTop"
android:theme=
"@style/Theme.AppCompat"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density
|uiMode
"
android:hardwareAccelerated=
"true"
android:windowSoftInputMode=
"adjustResize"
>
<intent-filter>
...
...
examples/hello_world/android/app/src/main/AndroidManifest.xml
View file @
f777db2b
...
...
@@ -21,7 +21,7 @@
<activity
android:name=
".MainActivity"
android:launchMode=
"singleTop"
android:theme=
"@android:style/Theme.Black.NoTitleBar"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density
|uiMode
"
android:hardwareAccelerated=
"true"
android:windowSoftInputMode=
"adjustResize"
>
<intent-filter>
...
...
examples/layers/android/app/src/main/AndroidManifest.xml
View file @
f777db2b
...
...
@@ -16,7 +16,7 @@
<activity
android:name=
".MainActivity"
android:launchMode=
"singleTop"
android:theme=
"@android:style/Theme.Black.NoTitleBar"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density
|uiMode
"
android:hardwareAccelerated=
"true"
android:windowSoftInputMode=
"adjustResize"
>
<intent-filter>
...
...
examples/platform_channel/android/app/src/main/AndroidManifest.xml
View file @
f777db2b
...
...
@@ -13,7 +13,7 @@
<activity
android:name=
".MainActivity"
android:launchMode=
"singleTop"
android:theme=
"@android:style/Theme.Black.NoTitleBar"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density
|uiMode
"
android:hardwareAccelerated=
"true"
android:windowSoftInputMode=
"adjustResize"
>
<intent-filter>
...
...
examples/platform_view/android/app/src/main/AndroidManifest.xml
View file @
f777db2b
...
...
@@ -20,7 +20,7 @@
android:name=
"io.flutter.examples.platform_view.MainActivity"
android:launchMode=
"singleTop"
android:theme=
"@android:style/Theme.Black.NoTitleBar"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density
|uiMode
"
android:hardwareAccelerated=
"true"
android:windowSoftInputMode=
"adjustResize"
>
<intent-filter>
...
...
examples/stocks/android/app/src/main/AndroidManifest.xml
View file @
f777db2b
...
...
@@ -21,7 +21,7 @@
<activity
android:name=
".MainActivity"
android:launchMode=
"singleTop"
android:theme=
"@android:style/Theme.Black.NoTitleBar"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density
|uiMode
"
android:hardwareAccelerated=
"true"
android:windowSoftInputMode=
"adjustResize"
>
<intent-filter>
...
...
packages/flutter_tools/templates/app/android.tmpl/app/src/main/AndroidManifest.xml.tmpl
View file @
f777db2b
...
...
@@ -14,7 +14,7 @@
android:name=".MainActivity"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density
|uiMode
"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- This keeps the window background of the activity showing
...
...
packages/flutter_tools/templates/module/android/host_app_common/app.tmpl/src/main/AndroidManifest.xml.tmpl
View file @
f777db2b
...
...
@@ -21,7 +21,7 @@
android:name=
".MainActivity"
android:launchMode=
"singleTop"
android:theme=
"@style/LaunchTheme"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density
|uiMode
"
android:hardwareAccelerated=
"true"
android:windowSoftInputMode=
"adjustResize"
>
<!-- This keeps the window background of the activity showing
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment