flutter/dev/integration_tests/android_custom_host_app
Zachary Anderson 6a6874ecf9
Update Android minSdkVersion to 21 (#142267)
This PR increases Android's `minSdkVersion` to 21.

There are two changes in this PR aside from simply increasing the number
from 19 to 21 everywhere.

First, tests using `flutter_gallery` fail without updating the
lockfiles. The changes in the PR are the results of running
`dev/tools/bin/generate_gradle_lockfiles.dart` on that app.

Second, from
[here](https://developer.android.com/build/multidex#mdex-pre-l):
> if your minSdkVersion is 21 or higher, multidex is enabled by default
and you don't need the multidex library.

As a result, the `multidex` option everywhere is obsolete. This PR
removes all logic and tests related to that option that I could find.
`Google testing` and `customer_tests` pass on this PR, so it seems like
this won't be too breaking if it is at all. If needed I'll give this
some time to bake in the framework before landing the flutter/engine
PRs.

Context: https://github.com/flutter/flutter/issues/138117,
https://github.com/flutter/flutter/issues/141277, b/319373605
2024-01-29 09:49:09 -08:00
..
gradle/wrapper [Android] Bump template & integration test Gradle version to 7.6.4 (#139276) 2023-12-07 18:31:20 +00:00
SampleApp Update Android minSdkVersion to 21 (#142267) 2024-01-29 09:49:09 -08:00
build.gradle [deps] update Android SDK to 34 (#138183) 2023-12-14 00:55:57 +00:00
gradle.properties Bump gradle heap size limit in *everywhere* (#134665) 2023-09-13 10:36:24 -07:00
local.properties Read custom app project name from gradle.properties (#52791) 2020-04-05 20:46:44 -07:00
README.md Read custom app project name from gradle.properties (#52791) 2020-04-05 20:46:44 -07:00
settings.gradle Read custom app project name from gradle.properties (#52791) 2020-04-05 20:46:44 -07:00

Android custom host app

Android host app for a Flutter module created using

$ flutter create -t module hello

and placed in a sibling folder to (a clone of) the host app. Used by the module_custom_host_app_name_test.dart device lab test.