Unverified Commit 6a6874ec authored by Zachary Anderson's avatar Zachary Anderson Committed by GitHub

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
parent bdb71b8f
...@@ -19,8 +19,8 @@ FLUTTER_ROOT="$(dirname "$(dirname "$(dirname "${BASH_SOURCE[0]}")")")" ...@@ -19,8 +19,8 @@ FLUTTER_ROOT="$(dirname "$(dirname "$(dirname "${BASH_SOURCE[0]}")")")"
DART_SDK_PATH="$FLUTTER_ROOT/bin/cache/dart-sdk" DART_SDK_PATH="$FLUTTER_ROOT/bin/cache/dart-sdk"
DART_SDK_PATH_OLD="$DART_SDK_PATH.old" DART_SDK_PATH_OLD="$DART_SDK_PATH.old"
ENGINE_STAMP="$FLUTTER_ROOT/bin/cache/engine-dart-sdk.stamp" ENGINE_STAMP="$FLUTTER_ROOT/bin/cache/engine-dart-sdk.stamp"
ENGINE_VERSION=`cat "$FLUTTER_ROOT/bin/internal/engine.version"` ENGINE_VERSION=$(cat "$FLUTTER_ROOT/bin/internal/engine.version")
ENGINE_REALM=`cat "$FLUTTER_ROOT/bin/internal/engine.realm"` ENGINE_REALM=$(cat "$FLUTTER_ROOT/bin/internal/engine.realm" | tr -d '[:space:]')
OS="$(uname -s)" OS="$(uname -s)"
if [ ! -f "$ENGINE_STAMP" ] || [ "$ENGINE_VERSION" != `cat "$ENGINE_STAMP"` ]; then if [ ! -f "$ENGINE_STAMP" ] || [ "$ENGINE_VERSION" != `cat "$ENGINE_STAMP"` ]; then
......
...@@ -14,7 +14,7 @@ android { ...@@ -14,7 +14,7 @@ android {
defaultConfig { defaultConfig {
applicationId "io.flutter.add2app" applicationId "io.flutter.add2app"
minSdkVersion 19 minSdkVersion 21
targetSdkVersion 33 targetSdkVersion 33
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
......
...@@ -14,7 +14,7 @@ android { ...@@ -14,7 +14,7 @@ android {
defaultConfig { defaultConfig {
applicationId "io.flutter.add2app" applicationId "io.flutter.add2app"
minSdkVersion 19 minSdkVersion 21
targetSdkVersion 33 targetSdkVersion 33
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
......
...@@ -34,7 +34,7 @@ android { ...@@ -34,7 +34,7 @@ android {
} }
defaultConfig { defaultConfig {
minSdkVersion 19 minSdkVersion 21
targetSdkVersion 33 targetSdkVersion 33
versionCode flutterVersionCode.toInteger() versionCode flutterVersionCode.toInteger()
versionName flutterVersionName versionName flutterVersionName
......
...@@ -14,7 +14,7 @@ android { ...@@ -14,7 +14,7 @@ android {
defaultConfig { defaultConfig {
applicationId "io.flutter.addtoapp" applicationId "io.flutter.addtoapp"
minSdkVersion 19 minSdkVersion 21
targetSdkVersion 33 targetSdkVersion 33
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
......
...@@ -52,7 +52,6 @@ android { ...@@ -52,7 +52,6 @@ android {
targetSdkVersion flutter.targetSdkVersion targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger() versionCode flutterVersionCode.toInteger()
versionName flutterVersionName versionName flutterVersionName
multiDexEnabled true
} }
buildTypes { buildTypes {
...@@ -68,8 +67,6 @@ flutter { ...@@ -68,8 +67,6 @@ flutter {
} }
dependencies { dependencies {
def multidex_version = "2.0.1"
implementation "androidx.multidex:multidex:$multidex_version"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.2.0' implementation 'androidx.coordinatorlayout:coordinatorlayout:1.2.0'
implementation 'com.google.android.material:material:1.5.0' implementation 'com.google.android.material:material:1.5.0'
......
...@@ -5,7 +5,6 @@ found in the LICENSE file. --> ...@@ -5,7 +5,6 @@ found in the LICENSE file. -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> <manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application <application
android:label="@string/app_name" android:label="@string/app_name"
android:name="androidx.multidex.MultiDexApplication"
android:icon="@mipmap/ic_launcher"> android:icon="@mipmap/ic_launcher">
<activity <activity
android:name=".MainActivity" android:name=".MainActivity"
......
io/flutter/app/FlutterApplication.class
io/flutter/app/FlutterMultiDexApplication.class
io/flutter/embedding/engine/loader/FlutterLoader.class
io/flutter/view/FlutterMain.class
io/flutter/util/PathUtils.class
...@@ -45,7 +45,7 @@ class FlutterExtension { ...@@ -45,7 +45,7 @@ class FlutterExtension {
public final int compileSdkVersion = 34 public final int compileSdkVersion = 34
/** Sets the minSdkVersion used by default in Flutter app projects. */ /** Sets the minSdkVersion used by default in Flutter app projects. */
public final int minSdkVersion = 19 public final int minSdkVersion = 21
/** /**
* Sets the targetSdkVersion used by default in Flutter app projects. * Sets the targetSdkVersion used by default in Flutter app projects.
...@@ -323,22 +323,6 @@ class FlutterPlugin implements Plugin<Project> { ...@@ -323,22 +323,6 @@ class FlutterPlugin implements Plugin<Project> {
String flutterExecutableName = Os.isFamily(Os.FAMILY_WINDOWS) ? "flutter.bat" : "flutter" String flutterExecutableName = Os.isFamily(Os.FAMILY_WINDOWS) ? "flutter.bat" : "flutter"
flutterExecutable = Paths.get(flutterRoot.absolutePath, "bin", flutterExecutableName).toFile() flutterExecutable = Paths.get(flutterRoot.absolutePath, "bin", flutterExecutableName).toFile()
final String propMultidexEnabled = "multidex-enabled"
if (project.hasProperty(propMultidexEnabled) &&
project.property(propMultidexEnabled).toBoolean()) {
String flutterMultidexKeepfile = Paths.get(flutterRoot.absolutePath, "packages", "flutter_tools",
"gradle", "flutter_multidex_keepfile.txt")
project.android {
buildTypes {
release {
multiDexKeepFile(project.file(flutterMultidexKeepfile))
}
}
}
project.dependencies {
implementation("androidx.multidex:multidex:2.0.1")
}
}
// Use Kotlin DSL to handle baseApplicationName logic due to Groovy dynamic dispatch bug. // Use Kotlin DSL to handle baseApplicationName logic due to Groovy dynamic dispatch bug.
project.apply from: Paths.get(flutterRoot.absolutePath, "packages", "flutter_tools", "gradle", "src", "main", "kotlin", "flutter.gradle.kts") project.apply from: Paths.get(flutterRoot.absolutePath, "packages", "flutter_tools", "gradle", "src", "main", "kotlin", "flutter.gradle.kts")
......
...@@ -10,21 +10,13 @@ class FlutterPluginKts : Plugin<Project> { ...@@ -10,21 +10,13 @@ class FlutterPluginKts : Plugin<Project> {
project.withGroovyBuilder { project.withGroovyBuilder {
getProperty("android").withGroovyBuilder { getProperty("android").withGroovyBuilder {
getProperty("defaultConfig").withGroovyBuilder { getProperty("defaultConfig").withGroovyBuilder {
if (project.hasProperty("multidex-enabled") && var baseApplicationName: String = "android.app.Application"
project.property("multidex-enabled").toString().toBoolean()) { if (project.hasProperty("base-application-name")) {
setProperty("multiDexEnabled", true) baseApplicationName = project.property("base-application-name").toString()
getProperty("manifestPlaceholders").withGroovyBuilder { }
setProperty("applicationName", "io.flutter.app.FlutterMultiDexApplication") // Setting to android.app.Application is the same as omitting the attribute.
} getProperty("manifestPlaceholders").withGroovyBuilder {
} else { setProperty("applicationName", baseApplicationName)
var baseApplicationName: String = "android.app.Application"
if (project.hasProperty("base-application-name")) {
baseApplicationName = project.property("base-application-name").toString()
}
// Setting to android.app.Application is the same as omitting the attribute.
getProperty("manifestPlaceholders").withGroovyBuilder {
setProperty("applicationName", baseApplicationName)
}
} }
} }
} }
......
...@@ -587,7 +587,6 @@ class AndroidDevice extends Device { ...@@ -587,7 +587,6 @@ class AndroidDevice extends Device {
debuggingOptions.buildInfo, debuggingOptions.buildInfo,
targetArchs: <AndroidArch>[androidArch], targetArchs: <AndroidArch>[androidArch],
fastStart: debuggingOptions.fastStart, fastStart: debuggingOptions.fastStart,
multidexEnabled: (platformArgs['multidex'] as bool?) ?? false,
), ),
); );
// Package has been built, so we can get the updated application ID and // Package has been built, so we can get the updated application ID and
......
...@@ -38,7 +38,6 @@ import 'java.dart'; ...@@ -38,7 +38,6 @@ import 'java.dart';
import 'migrations/android_studio_java_gradle_conflict_migration.dart'; import 'migrations/android_studio_java_gradle_conflict_migration.dart';
import 'migrations/min_sdk_version_migration.dart'; import 'migrations/min_sdk_version_migration.dart';
import 'migrations/top_level_gradle_build_file_migration.dart'; import 'migrations/top_level_gradle_build_file_migration.dart';
import 'multidex.dart';
/// The regex to grab variant names from printBuildVariants gradle task /// The regex to grab variant names from printBuildVariants gradle task
/// ///
...@@ -395,16 +394,6 @@ class AndroidGradleBuilder implements AndroidBuilder { ...@@ -395,16 +394,6 @@ class AndroidGradleBuilder implements AndroidBuilder {
command.add('-Ptarget-platform=$targetPlatforms'); command.add('-Ptarget-platform=$targetPlatforms');
} }
command.add('-Ptarget=$target'); command.add('-Ptarget=$target');
// Only attempt adding multidex support if all the flutter generated files exist.
// If the files do not exist and it was unintentional, the app will fail to build
// and prompt the developer if they wish Flutter to add the files again via gradle_error.dart.
if (androidBuildInfo.multidexEnabled &&
multiDexApplicationExists(project.directory) &&
androidManifestHasNameVariable(project.directory)) {
command.add('-Pmultidex-enabled=true');
ensureMultiDexApplicationExists(project.directory);
_logger.printStatus('Building with Flutter multidex support enabled.');
}
// If using v1 embedding, we want to use FlutterApplication as the base app. // If using v1 embedding, we want to use FlutterApplication as the base app.
final String baseApplicationName = final String baseApplicationName =
project.android.getEmbeddingVersion() == AndroidEmbeddingVersion.v2 ? project.android.getEmbeddingVersion() == AndroidEmbeddingVersion.v2 ?
...@@ -512,7 +501,6 @@ class AndroidGradleBuilder implements AndroidBuilder { ...@@ -512,7 +501,6 @@ class AndroidGradleBuilder implements AndroidBuilder {
line: detectedGradleErrorLine!, line: detectedGradleErrorLine!,
project: project, project: project,
usesAndroidX: usesAndroidX, usesAndroidX: usesAndroidX,
multidexEnabled: androidBuildInfo.multidexEnabled,
); );
if (maxRetries == null || retry < maxRetries) { if (maxRetries == null || retry < maxRetries) {
......
...@@ -40,7 +40,7 @@ const String templateKotlinGradlePluginVersion = '1.7.10'; ...@@ -40,7 +40,7 @@ const String templateKotlinGradlePluginVersion = '1.7.10';
// //
// Please see the README before changing any of these values. // Please see the README before changing any of these values.
const String compileSdkVersion = '34'; const String compileSdkVersion = '34';
const String minSdkVersion = '19'; const String minSdkVersion = '21';
const String targetSdkVersion = '33'; const String targetSdkVersion = '33';
const String ndkVersion = '23.1.7779620'; const String ndkVersion = '23.1.7779620';
...@@ -107,9 +107,11 @@ final RegExp gradleOrgVersionMatch = ...@@ -107,9 +107,11 @@ final RegExp gradleOrgVersionMatch =
); );
// This matches uncommented minSdkVersion lines in the module-level build.gradle // This matches uncommented minSdkVersion lines in the module-level build.gradle
// file which have minSdkVersion 16,17, or 18 (the Jelly Bean api levels). // file which have minSdkVersion 16,17, 18, 19, or 20.
final RegExp jellyBeanMinSdkVersionMatch = final RegExp tooOldMinSdkVersionMatch = RegExp(
RegExp(r'(?<=^\s*)minSdkVersion 1[678](?=\s*(?://|$))', multiLine: true); r'(?<=^\s*)minSdkVersion (1[6789]|20)(?=\s*(?://|$))',
multiLine: true,
);
// From https://docs.gradle.org/current/userguide/command_line_interface.html#command_line_interface // From https://docs.gradle.org/current/userguide/command_line_interface.html#command_line_interface
const String gradleVersionFlag = r'--version'; const String gradleVersionFlag = r'--version';
......
...@@ -42,6 +42,8 @@ class MinSdkVersionMigration extends ProjectMigrator { ...@@ -42,6 +42,8 @@ class MinSdkVersionMigration extends ProjectMigrator {
@override @override
String migrateFileContents(String fileContents) { String migrateFileContents(String fileContents) {
return fileContents.replaceAll(jellyBeanMinSdkVersionMatch, replacementMinSdkText); return fileContents.replaceAll(
tooOldMinSdkVersionMatch, replacementMinSdkText,
);
} }
} }
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:xml/xml.dart';
import '../base/file_system.dart';
// These utility methods are used to generate the code for multidex support as
// well as verifying the project is properly set up.
File _getMultiDexApplicationFile(Directory projectDir) {
return projectDir.childDirectory('android')
.childDirectory('app')
.childDirectory('src')
.childDirectory('main')
.childDirectory('java')
.childDirectory('io')
.childDirectory('flutter')
.childDirectory('app')
.childFile('FlutterMultiDexApplication.java');
}
/// Creates the FlutterMultiDexApplication.java if it does not exist.
void ensureMultiDexApplicationExists(final Directory projectDir) {
final File applicationFile = _getMultiDexApplicationFile(projectDir);
if (applicationFile.existsSync()) {
// This checks for instances of legacy versions of this file. Legacy versions maintained
// compatibility with v1 embedding by extending FlutterApplication. If we detect this,
// we replace the file with the modern v2 embedding version.
if (applicationFile.readAsStringSync().contains('android.app.Application;')) {
return;
}
}
applicationFile.createSync(recursive: true);
final StringBuffer buffer = StringBuffer();
buffer.write('''
// Generated file.
//
// If you wish to remove Flutter's multidex support, delete this entire file.
//
// Modifications to this file should be done in a copy under a different name
// as this file may be regenerated.
package io.flutter.app;
import android.app.Application;
import android.content.Context;
import androidx.annotation.CallSuper;
import androidx.multidex.MultiDex;
/**
* Extension of {@link android.app.Application}, adding multidex support.
*/
public class FlutterMultiDexApplication extends Application {
@Override
@CallSuper
protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
MultiDex.install(this);
}
}
''');
applicationFile.writeAsStringSync(buffer.toString(), flush: true);
}
/// Returns true if FlutterMultiDexApplication.java exists.
///
/// This function does not verify the contents of the file.
bool multiDexApplicationExists(final Directory projectDir) {
if (_getMultiDexApplicationFile(projectDir).existsSync()) {
return true;
}
return false;
}
File _getManifestFile(Directory projectDir) {
return projectDir.childDirectory('android')
.childDirectory('app')
.childDirectory('src')
.childDirectory('main')
.childFile('AndroidManifest.xml');
}
/// Returns true if the `app` module AndroidManifest.xml includes the
/// <application android:name="${applicationName}"> attribute.
bool androidManifestHasNameVariable(final Directory projectDir) {
final File manifestFile = _getManifestFile(projectDir);
if (!manifestFile.existsSync()) {
return false;
}
XmlDocument document;
try {
document = XmlDocument.parse(manifestFile.readAsStringSync());
} on XmlException {
return false;
} on FileSystemException {
return false;
}
// Check for the ${androidName} application attribute.
for (final XmlElement application in document.findAllElements('application')) {
final String? applicationName = application.getAttribute('android:name');
if (applicationName == r'${applicationName}') {
return true;
}
}
return false;
}
...@@ -332,7 +332,6 @@ class AndroidBuildInfo { ...@@ -332,7 +332,6 @@ class AndroidBuildInfo {
], ],
this.splitPerAbi = false, this.splitPerAbi = false,
this.fastStart = false, this.fastStart = false,
this.multidexEnabled = false,
}); });
// The build info containing the mode and flavor. // The build info containing the mode and flavor.
...@@ -350,9 +349,6 @@ class AndroidBuildInfo { ...@@ -350,9 +349,6 @@ class AndroidBuildInfo {
/// Whether to bootstrap an empty application. /// Whether to bootstrap an empty application.
final bool fastStart; final bool fastStart;
/// Whether to enable multidex support for apps with more than 64k methods.
final bool multidexEnabled;
} }
/// A summary of the compilation strategy used for Dart. /// A summary of the compilation strategy used for Dart.
......
...@@ -37,7 +37,6 @@ class BuildApkCommand extends BuildSubCommand { ...@@ -37,7 +37,6 @@ class BuildApkCommand extends BuildSubCommand {
addNullSafetyModeOptions(hide: !verboseHelp); addNullSafetyModeOptions(hide: !verboseHelp);
usesAnalyzeSizeFlag(); usesAnalyzeSizeFlag();
addAndroidSpecificBuildOptions(hide: !verboseHelp); addAndroidSpecificBuildOptions(hide: !verboseHelp);
addMultidexOption();
addIgnoreDeprecationOption(); addIgnoreDeprecationOption();
argParser argParser
..addFlag('split-per-abi', ..addFlag('split-per-abi',
...@@ -134,7 +133,6 @@ class BuildApkCommand extends BuildSubCommand { ...@@ -134,7 +133,6 @@ class BuildApkCommand extends BuildSubCommand {
buildInfo, buildInfo,
splitPerAbi: boolArg('split-per-abi'), splitPerAbi: boolArg('split-per-abi'),
targetArchs: stringsArg('target-platform').map<AndroidArch>(getAndroidArchForName), targetArchs: stringsArg('target-platform').map<AndroidArch>(getAndroidArchForName),
multidexEnabled: boolArg('multidex'),
); );
validateBuild(androidBuildInfo); validateBuild(androidBuildInfo);
displayNullSafetyMode(androidBuildInfo.buildInfo); displayNullSafetyMode(androidBuildInfo.buildInfo);
......
...@@ -42,7 +42,6 @@ class BuildAppBundleCommand extends BuildSubCommand { ...@@ -42,7 +42,6 @@ class BuildAppBundleCommand extends BuildSubCommand {
addEnableExperimentation(hide: !verboseHelp); addEnableExperimentation(hide: !verboseHelp);
usesAnalyzeSizeFlag(); usesAnalyzeSizeFlag();
addAndroidSpecificBuildOptions(hide: !verboseHelp); addAndroidSpecificBuildOptions(hide: !verboseHelp);
addMultidexOption();
addIgnoreDeprecationOption(); addIgnoreDeprecationOption();
argParser.addMultiOption('target-platform', argParser.addMultiOption('target-platform',
defaultsTo: <String>['android-arm', 'android-arm64', 'android-x64'], defaultsTo: <String>['android-arm', 'android-arm64', 'android-x64'],
...@@ -138,7 +137,6 @@ class BuildAppBundleCommand extends BuildSubCommand { ...@@ -138,7 +137,6 @@ class BuildAppBundleCommand extends BuildSubCommand {
final AndroidBuildInfo androidBuildInfo = AndroidBuildInfo(await getBuildInfo(), final AndroidBuildInfo androidBuildInfo = AndroidBuildInfo(await getBuildInfo(),
targetArchs: stringsArg('target-platform').map<AndroidArch>(getAndroidArchForName), targetArchs: stringsArg('target-platform').map<AndroidArch>(getAndroidArchForName),
multidexEnabled: boolArg('multidex'),
); );
// Do all setup verification that doesn't involve loading units. Checks that // Do all setup verification that doesn't involve loading units. Checks that
// require generated loading units are done after gen_snapshot in assemble. // require generated loading units are done after gen_snapshot in assemble.
......
...@@ -650,7 +650,6 @@ class AppDomain extends Domain { ...@@ -650,7 +650,6 @@ class AppDomain extends Domain {
String? packagesFilePath, String? packagesFilePath,
String? dillOutputPath, String? dillOutputPath,
bool ipv6 = false, bool ipv6 = false,
bool multidexEnabled = false,
String? isolateFilter, String? isolateFilter,
bool machine = true, bool machine = true,
String? userIdentifier, String? userIdentifier,
...@@ -703,7 +702,6 @@ class AppDomain extends Domain { ...@@ -703,7 +702,6 @@ class AppDomain extends Domain {
projectRootPath: projectRootPath, projectRootPath: projectRootPath,
dillOutputPath: dillOutputPath, dillOutputPath: dillOutputPath,
ipv6: ipv6, ipv6: ipv6,
multidexEnabled: multidexEnabled,
hostIsIde: true, hostIsIde: true,
machine: machine, machine: machine,
analytics: globals.analytics, analytics: globals.analytics,
...@@ -715,7 +713,6 @@ class AppDomain extends Domain { ...@@ -715,7 +713,6 @@ class AppDomain extends Domain {
debuggingOptions: options, debuggingOptions: options,
applicationBinary: applicationBinary, applicationBinary: applicationBinary,
ipv6: ipv6, ipv6: ipv6,
multidexEnabled: multidexEnabled,
machine: machine, machine: machine,
); );
} }
......
...@@ -71,7 +71,6 @@ class DriveCommand extends RunCommandBase { ...@@ -71,7 +71,6 @@ class DriveCommand extends RunCommandBase {
// to prevent a local network permission dialog on iOS 14+, // to prevent a local network permission dialog on iOS 14+,
// which cannot be accepted or dismissed in a CI environment. // which cannot be accepted or dismissed in a CI environment.
addPublishPort(enabledByDefault: false, verboseHelp: verboseHelp); addPublishPort(enabledByDefault: false, verboseHelp: verboseHelp);
addMultidexOption();
argParser argParser
..addFlag('keep-app-running', ..addFlag('keep-app-running',
help: 'Will keep the Flutter application running when done testing.\n' help: 'Will keep the Flutter application running when done testing.\n'
...@@ -281,8 +280,6 @@ class DriveCommand extends RunCommandBase { ...@@ -281,8 +280,6 @@ class DriveCommand extends RunCommandBase {
'trace-startup': traceStartup, 'trace-startup': traceStartup,
if (web) if (web)
'--no-launch-chrome': true, '--no-launch-chrome': true,
if (boolArg('multidex'))
'multidex': true,
} }
); );
} else { } else {
......
...@@ -337,7 +337,6 @@ class RunCommand extends RunCommandBase { ...@@ -337,7 +337,6 @@ class RunCommand extends RunCommandBase {
// This will allow subsequent "flutter attach" commands to connect to the VM // This will allow subsequent "flutter attach" commands to connect to the VM
// without needing to know the port. // without needing to know the port.
addPublishPort(verboseHelp: verboseHelp); addPublishPort(verboseHelp: verboseHelp);
addMultidexOption();
addIgnoreDeprecationOption(); addIgnoreDeprecationOption();
argParser argParser
..addFlag('await-first-frame-when-tracing', ..addFlag('await-first-frame-when-tracing',
...@@ -640,7 +639,6 @@ class RunCommand extends RunCommandBase { ...@@ -640,7 +639,6 @@ class RunCommand extends RunCommandBase {
dillOutputPath: stringArg('output-dill'), dillOutputPath: stringArg('output-dill'),
stayResident: stayResident, stayResident: stayResident,
ipv6: ipv6 ?? false, ipv6: ipv6 ?? false,
multidexEnabled: boolArg('multidex'),
analytics: globals.analytics, analytics: globals.analytics,
nativeAssetsYamlFile: stringArg(FlutterOptions.kNativeAssetsYamlFile), nativeAssetsYamlFile: stringArg(FlutterOptions.kNativeAssetsYamlFile),
); );
...@@ -670,7 +668,6 @@ class RunCommand extends RunCommandBase { ...@@ -670,7 +668,6 @@ class RunCommand extends RunCommandBase {
: globals.fs.file(applicationBinaryPath), : globals.fs.file(applicationBinaryPath),
ipv6: ipv6 ?? false, ipv6: ipv6 ?? false,
stayResident: stayResident, stayResident: stayResident,
multidexEnabled: boolArg('multidex'),
); );
} }
...@@ -715,7 +712,6 @@ class RunCommand extends RunCommandBase { ...@@ -715,7 +712,6 @@ class RunCommand extends RunCommandBase {
packagesFilePath: globalResults![FlutterGlobalOptions.kPackagesOption] as String?, packagesFilePath: globalResults![FlutterGlobalOptions.kPackagesOption] as String?,
dillOutputPath: stringArg('output-dill'), dillOutputPath: stringArg('output-dill'),
ipv6: ipv6 ?? false, ipv6: ipv6 ?? false,
multidexEnabled: boolArg('multidex'),
userIdentifier: userIdentifier, userIdentifier: userIdentifier,
enableDevTools: boolArg(FlutterCommand.kEnableDevTools), enableDevTools: boolArg(FlutterCommand.kEnableDevTools),
); );
......
...@@ -455,9 +455,7 @@ class FlutterDevice { ...@@ -455,9 +455,7 @@ class FlutterDevice {
} }
devFSWriter = device!.createDevFSWriter(applicationPackage, userIdentifier); devFSWriter = device!.createDevFSWriter(applicationPackage, userIdentifier);
final Map<String, dynamic> platformArgs = <String, dynamic>{ final Map<String, dynamic> platformArgs = <String, dynamic>{};
'multidex': hotRunner.multidexEnabled,
};
await startEchoingDeviceLog(hotRunner.debuggingOptions); await startEchoingDeviceLog(hotRunner.debuggingOptions);
...@@ -525,7 +523,6 @@ class FlutterDevice { ...@@ -525,7 +523,6 @@ class FlutterDevice {
final Map<String, dynamic> platformArgs = <String, dynamic>{}; final Map<String, dynamic> platformArgs = <String, dynamic>{};
platformArgs['trace-startup'] = coldRunner.traceStartup; platformArgs['trace-startup'] = coldRunner.traceStartup;
platformArgs['multidex'] = coldRunner.multidexEnabled;
await startEchoingDeviceLog(coldRunner.debuggingOptions); await startEchoingDeviceLog(coldRunner.debuggingOptions);
......
...@@ -21,7 +21,6 @@ class ColdRunner extends ResidentRunner { ...@@ -21,7 +21,6 @@ class ColdRunner extends ResidentRunner {
this.traceStartup = false, this.traceStartup = false,
this.awaitFirstFrameWhenTracing = true, this.awaitFirstFrameWhenTracing = true,
this.applicationBinary, this.applicationBinary,
this.multidexEnabled = false,
bool super.ipv6 = false, bool super.ipv6 = false,
super.stayResident, super.stayResident,
super.machine, super.machine,
...@@ -33,7 +32,6 @@ class ColdRunner extends ResidentRunner { ...@@ -33,7 +32,6 @@ class ColdRunner extends ResidentRunner {
final bool traceStartup; final bool traceStartup;
final bool awaitFirstFrameWhenTracing; final bool awaitFirstFrameWhenTracing;
final File? applicationBinary; final File? applicationBinary;
final bool multidexEnabled;
bool _didAttach = false; bool _didAttach = false;
@override @override
......
...@@ -89,7 +89,6 @@ class HotRunner extends ResidentRunner { ...@@ -89,7 +89,6 @@ class HotRunner extends ResidentRunner {
super.stayResident, super.stayResident,
bool super.ipv6 = false, bool super.ipv6 = false,
super.machine, super.machine,
this.multidexEnabled = false,
super.devtoolsHandler, super.devtoolsHandler,
StopwatchFactory stopwatchFactory = const StopwatchFactory(), StopwatchFactory stopwatchFactory = const StopwatchFactory(),
ReloadSourcesHelper reloadSourcesHelper = defaultReloadSourcesHelper, ReloadSourcesHelper reloadSourcesHelper = defaultReloadSourcesHelper,
...@@ -115,7 +114,6 @@ class HotRunner extends ResidentRunner { ...@@ -115,7 +114,6 @@ class HotRunner extends ResidentRunner {
final bool benchmarkMode; final bool benchmarkMode;
final File? applicationBinary; final File? applicationBinary;
final bool hostIsIde; final bool hostIsIde;
final bool multidexEnabled;
/// When performing a hot restart, the tool needs to upload a new main.dart.dill to /// When performing a hot restart, the tool needs to upload a new main.dart.dill to
/// each attached device's devfs. Replacing the existing file is not safe and does /// each attached device's devfs. Replacing the existing file is not safe and does
......
...@@ -1015,15 +1015,6 @@ abstract class FlutterCommand extends Command<void> { ...@@ -1015,15 +1015,6 @@ abstract class FlutterCommand extends Command<void> {
); );
} }
void addMultidexOption({ bool hide = false }) {
argParser.addFlag('multidex',
defaultsTo: true,
help: 'When enabled, indicates that the app should be built with multidex support. This '
'flag adds the dependencies for multidex when the minimum android sdk is 20 or '
'below. For android sdk versions 21 and above, multidex support is native.',
);
}
void addIgnoreDeprecationOption({ bool hide = false }) { void addIgnoreDeprecationOption({ bool hide = false }) {
argParser.addFlag('ignore-deprecation', argParser.addFlag('ignore-deprecation',
negatable: false, negatable: false,
......
...@@ -595,61 +595,6 @@ void main() { ...@@ -595,61 +595,6 @@ void main() {
}); });
group('--machine', () { group('--machine', () {
testUsingContext('enables multidex by default', () async {
final DaemonCapturingRunCommand command = DaemonCapturingRunCommand();
final FakeDevice device = FakeDevice();
testDeviceManager.devices = <Device>[device];
await expectLater(
() => createTestCommandRunner(command).run(<String>[
'run',
'--no-pub',
'--machine',
'-d',
device.id,
]),
throwsToolExit(),
);
expect(command.appDomain.multidexEnabled, isTrue);
}, overrides: <Type, Generator>{
Artifacts: () => artifacts,
Cache: () => Cache.test(processManager: FakeProcessManager.any()),
DeviceManager: () => testDeviceManager,
FileSystem: () => fs,
ProcessManager: () => FakeProcessManager.any(),
Usage: () => usage,
Stdio: () => FakeStdio(),
Logger: () => AppRunLogger(parent: BufferLogger.test()),
});
testUsingContext('can disable multidex with --no-multidex', () async {
final DaemonCapturingRunCommand command = DaemonCapturingRunCommand();
final FakeDevice device = FakeDevice();
testDeviceManager.devices = <Device>[device];
await expectLater(
() => createTestCommandRunner(command).run(<String>[
'run',
'--no-pub',
'--no-multidex',
'--machine',
'-d',
device.id,
]),
throwsToolExit(),
);
expect(command.appDomain.multidexEnabled, isFalse);
}, overrides: <Type, Generator>{
Artifacts: () => artifacts,
Cache: () => Cache.test(processManager: FakeProcessManager.any()),
DeviceManager: () => testDeviceManager,
FileSystem: () => fs,
ProcessManager: () => FakeProcessManager.any(),
Usage: () => usage,
Stdio: () => FakeStdio(),
Logger: () => AppRunLogger(parent: BufferLogger.test()),
});
testUsingContext('can pass --device-user', () async { testUsingContext('can pass --device-user', () async {
final DaemonCapturingRunCommand command = DaemonCapturingRunCommand(); final DaemonCapturingRunCommand command = DaemonCapturingRunCommand();
final FakeDevice device = FakeDevice(platformType: PlatformType.android); final FakeDevice device = FakeDevice(platformType: PlatformType.android);
...@@ -1570,7 +1515,6 @@ class DaemonCapturingRunCommand extends RunCommand { ...@@ -1570,7 +1515,6 @@ class DaemonCapturingRunCommand extends RunCommand {
class CapturingAppDomain extends AppDomain { class CapturingAppDomain extends AppDomain {
CapturingAppDomain(super.daemon); CapturingAppDomain(super.daemon);
bool? multidexEnabled;
String? userIdentifier; String? userIdentifier;
bool? enableDevTools; bool? enableDevTools;
...@@ -1588,14 +1532,12 @@ class CapturingAppDomain extends AppDomain { ...@@ -1588,14 +1532,12 @@ class CapturingAppDomain extends AppDomain {
String? packagesFilePath, String? packagesFilePath,
String? dillOutputPath, String? dillOutputPath,
bool ipv6 = false, bool ipv6 = false,
bool multidexEnabled = false,
String? isolateFilter, String? isolateFilter,
bool machine = true, bool machine = true,
String? userIdentifier, String? userIdentifier,
bool enableDevTools = true, bool enableDevTools = true,
String? flavor, String? flavor,
}) async { }) async {
this.multidexEnabled = multidexEnabled;
this.userIdentifier = userIdentifier; this.userIdentifier = userIdentifier;
this.enableDevTools = enableDevTools; this.enableDevTools = enableDevTools;
throwToolExit(''); throwToolExit('');
......
...@@ -117,7 +117,6 @@ void main() { ...@@ -117,7 +117,6 @@ void main() {
String? line, String? line,
FlutterProject? project, FlutterProject? project,
bool? usesAndroidX, bool? usesAndroidX,
bool? multidexEnabled
}) async { }) async {
handlerCalled = true; handlerCalled = true;
return GradleBuildStatus.exit; return GradleBuildStatus.exit;
...@@ -312,7 +311,6 @@ void main() { ...@@ -312,7 +311,6 @@ void main() {
String? line, String? line,
FlutterProject? project, FlutterProject? project,
bool? usesAndroidX, bool? usesAndroidX,
bool? multidexEnabled
}) async { }) async {
return GradleBuildStatus.retry; return GradleBuildStatus.retry;
}, },
...@@ -415,7 +413,6 @@ void main() { ...@@ -415,7 +413,6 @@ void main() {
String? line, String? line,
FlutterProject? project, FlutterProject? project,
bool? usesAndroidX, bool? usesAndroidX,
bool? multidexEnabled
}) async { }) async {
handlerCalled = true; handlerCalled = true;
return GradleBuildStatus.exit; return GradleBuildStatus.exit;
...@@ -603,7 +600,6 @@ void main() { ...@@ -603,7 +600,6 @@ void main() {
String? line, String? line,
FlutterProject? project, FlutterProject? project,
bool? usesAndroidX, bool? usesAndroidX,
bool? multidexEnabled
}) async { }) async {
return GradleBuildStatus.retry; return GradleBuildStatus.retry;
}, },
......
...@@ -332,7 +332,7 @@ tasks.register("clean", Delete) { ...@@ -332,7 +332,7 @@ tasks.register("clean", Delete) {
}); });
}); });
group('migrate min sdk versions less than 19 to flutter.minSdkVersion ' group('migrate min sdk versions less than 21 to flutter.minSdkVersion '
'when in a FlutterProject that is an app', () 'when in a FlutterProject that is an app', ()
{ {
late MemoryFileSystem memoryFileSystem; late MemoryFileSystem memoryFileSystem;
...@@ -359,32 +359,25 @@ tasks.register("clean", Delete) { ...@@ -359,32 +359,25 @@ tasks.register("clean", Delete) {
expect(bufferLogger.traceText, contains(appGradleNotFoundWarning)); expect(bufferLogger.traceText, contains(appGradleNotFoundWarning));
}); });
testWithoutContext('replace when api 16', () { testWithoutContext('replace when api 19', () {
const String minSdkVersion16 = 'minSdkVersion 16'; const String minSdkVersion19 = 'minSdkVersion 19';
project.appGradleFile.writeAsStringSync(sampleModuleGradleBuildFile(minSdkVersion16)); project.appGradleFile.writeAsStringSync(sampleModuleGradleBuildFile(minSdkVersion19));
migration.migrate();
expect(project.appGradleFile.readAsStringSync(), sampleModuleGradleBuildFile(replacementMinSdkText));
});
testWithoutContext('replace when api 17', () {
const String minSdkVersion17 = 'minSdkVersion 17';
project.appGradleFile.writeAsStringSync(sampleModuleGradleBuildFile(minSdkVersion17));
migration.migrate(); migration.migrate();
expect(project.appGradleFile.readAsStringSync(), sampleModuleGradleBuildFile(replacementMinSdkText)); expect(project.appGradleFile.readAsStringSync(), sampleModuleGradleBuildFile(replacementMinSdkText));
}); });
testWithoutContext('replace when api 18', () { testWithoutContext('replace when api 20', () {
const String minSdkVersion18 = 'minSdkVersion 18'; const String minSdkVersion20 = 'minSdkVersion 20';
project.appGradleFile.writeAsStringSync(sampleModuleGradleBuildFile(minSdkVersion18)); project.appGradleFile.writeAsStringSync(sampleModuleGradleBuildFile(minSdkVersion20));
migration.migrate(); migration.migrate();
expect(project.appGradleFile.readAsStringSync(), sampleModuleGradleBuildFile(replacementMinSdkText)); expect(project.appGradleFile.readAsStringSync(), sampleModuleGradleBuildFile(replacementMinSdkText));
}); });
testWithoutContext('do nothing when >=api 19', () { testWithoutContext('do nothing when >=api 21', () {
const String minSdkVersion19 = 'minSdkVersion 19'; const String minSdkVersion21 = 'minSdkVersion 21';
project.appGradleFile.writeAsStringSync(sampleModuleGradleBuildFile(minSdkVersion19)); project.appGradleFile.writeAsStringSync(sampleModuleGradleBuildFile(minSdkVersion21));
migration.migrate(); migration.migrate();
expect(project.appGradleFile.readAsStringSync(), sampleModuleGradleBuildFile(minSdkVersion19)); expect(project.appGradleFile.readAsStringSync(), sampleModuleGradleBuildFile(minSdkVersion21));
}); });
testWithoutContext('do nothing when already using ' testWithoutContext('do nothing when already using '
...@@ -395,7 +388,7 @@ tasks.register("clean", Delete) { ...@@ -395,7 +388,7 @@ tasks.register("clean", Delete) {
}); });
testWithoutContext('avoid rewriting comments', () { testWithoutContext('avoid rewriting comments', () {
const String code = '// minSdkVersion 16 // old default\n' const String code = '// minSdkVersion 19 // old default\n'
' minSdkVersion 23 // new version'; ' minSdkVersion 23 // new version';
project.appGradleFile.writeAsStringSync(sampleModuleGradleBuildFile(code)); project.appGradleFile.writeAsStringSync(sampleModuleGradleBuildFile(code));
migration.migrate(); migration.migrate();
...@@ -411,10 +404,10 @@ tasks.register("clean", Delete) { ...@@ -411,10 +404,10 @@ tasks.register("clean", Delete) {
project, project,
bufferLogger bufferLogger
); );
const String minSdkVersion16 = 'minSdkVersion 16'; const String minSdkVersion19 = 'minSdkVersion 19';
project.appGradleFile.writeAsStringSync(sampleModuleGradleBuildFile(minSdkVersion16)); project.appGradleFile.writeAsStringSync(sampleModuleGradleBuildFile(minSdkVersion19));
migration.migrate(); migration.migrate();
expect(project.appGradleFile.readAsStringSync(), sampleModuleGradleBuildFile(minSdkVersion16)); expect(project.appGradleFile.readAsStringSync(), sampleModuleGradleBuildFile(minSdkVersion19));
}); });
testWithoutContext('do nothing when minSdkVersion is set ' testWithoutContext('do nothing when minSdkVersion is set '
...@@ -427,10 +420,10 @@ tasks.register("clean", Delete) { ...@@ -427,10 +420,10 @@ tasks.register("clean", Delete) {
testWithoutContext('do nothing when minSdkVersion is set ' testWithoutContext('do nothing when minSdkVersion is set '
'using = syntax', () { 'using = syntax', () {
const String equalsSyntaxMinSdkVersion16 = 'minSdkVersion = 16'; const String equalsSyntaxMinSdkVersion19 = 'minSdkVersion = 19';
project.appGradleFile.writeAsStringSync(sampleModuleGradleBuildFile(equalsSyntaxMinSdkVersion16)); project.appGradleFile.writeAsStringSync(sampleModuleGradleBuildFile(equalsSyntaxMinSdkVersion19));
migration.migrate(); migration.migrate();
expect(project.appGradleFile.readAsStringSync(), sampleModuleGradleBuildFile(equalsSyntaxMinSdkVersion16)); expect(project.appGradleFile.readAsStringSync(), sampleModuleGradleBuildFile(equalsSyntaxMinSdkVersion19));
}); });
}); });
}); });
......
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:file/file.dart';
import 'package:file/memory.dart';
import 'package:flutter_tools/src/android/multidex.dart';
import 'package:flutter_tools/src/base/file_system.dart';
import 'package:flutter_tools/src/globals.dart' as globals;
import '../../src/common.dart';
import '../../src/context.dart';
void main() {
testUsingContext('ensureMultidexUtilsExists patches file when invalid', () async {
final Directory directory = globals.fs.currentDirectory;
final File applicationFile = directory.childDirectory('android')
.childDirectory('app')
.childDirectory('src')
.childDirectory('main')
.childDirectory('java')
.childDirectory('io')
.childDirectory('flutter')
.childDirectory('app')
.childFile('FlutterMultiDexApplication.java');
applicationFile.createSync(recursive: true);
applicationFile.writeAsStringSync('hello', flush: true);
expect(applicationFile.readAsStringSync(), 'hello');
ensureMultiDexApplicationExists(directory);
// File should remain untouched
expect(applicationFile.readAsStringSync(), '''
// Generated file.
//
// If you wish to remove Flutter's multidex support, delete this entire file.
//
// Modifications to this file should be done in a copy under a different name
// as this file may be regenerated.
package io.flutter.app;
import android.app.Application;
import android.content.Context;
import androidx.annotation.CallSuper;
import androidx.multidex.MultiDex;
/**
* Extension of {@link android.app.Application}, adding multidex support.
*/
public class FlutterMultiDexApplication extends Application {
@Override
@CallSuper
protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
MultiDex.install(this);
}
}
''');
}, overrides: <Type, Generator>{
FileSystem: () => MemoryFileSystem.test(),
ProcessManager: () => FakeProcessManager.any(),
});
testUsingContext('ensureMultiDexApplicationExists generates when does not exist', () async {
final Directory directory = globals.fs.currentDirectory;
final File applicationFile = directory.childDirectory('android')
.childDirectory('app')
.childDirectory('src')
.childDirectory('main')
.childDirectory('java')
.childDirectory('io')
.childDirectory('flutter')
.childDirectory('app')
.childFile('FlutterMultiDexApplication.java');
ensureMultiDexApplicationExists(directory);
final String contents = applicationFile.readAsStringSync();
expect(contents.contains('FlutterMultiDexApplication'), true);
expect(contents.contains('MultiDex.install(this);'), true);
}, overrides: <Type, Generator>{
FileSystem: () => MemoryFileSystem.test(),
ProcessManager: () => FakeProcessManager.any(),
});
testUsingContext('multiDexApplicationExists false when does not exist', () async {
final Directory directory = globals.fs.currentDirectory;
expect(multiDexApplicationExists(directory), false);
}, overrides: <Type, Generator>{
FileSystem: () => MemoryFileSystem.test(),
ProcessManager: () => FakeProcessManager.any(),
});
testUsingContext('multiDexApplicationExists true when does exist', () async {
final Directory directory = globals.fs.currentDirectory;
final File utilsFile = directory.childDirectory('android')
.childDirectory('app')
.childDirectory('src')
.childDirectory('main')
.childDirectory('java')
.childDirectory('io')
.childDirectory('flutter')
.childDirectory('app')
.childFile('FlutterMultiDexApplication.java');
utilsFile.createSync(recursive: true);
expect(multiDexApplicationExists(directory), true);
}, overrides: <Type, Generator>{
FileSystem: () => MemoryFileSystem.test(),
ProcessManager: () => FakeProcessManager.any(),
});
testUsingContext('androidManifestHasNameVariable true with valid manifest', () async {
final Directory directory = globals.fs.currentDirectory;
final File applicationFile = directory.childDirectory('android')
.childDirectory('app')
.childDirectory('src')
.childDirectory('main')
.childFile('AndroidManifest.xml');
applicationFile.createSync(recursive: true);
applicationFile.writeAsStringSync(r'''
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.multidexapp">
<application
android:label="multidextest2"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
</application>
</manifest>
''', flush: true);
expect(androidManifestHasNameVariable(directory), true);
}, overrides: <Type, Generator>{
FileSystem: () => MemoryFileSystem.test(),
ProcessManager: () => FakeProcessManager.any(),
});
testUsingContext('androidManifestHasNameVariable false with no android:name attribute', () async {
final Directory directory = globals.fs.currentDirectory;
final File applicationFile = directory.childDirectory('android')
.childDirectory('app')
.childDirectory('src')
.childDirectory('main')
.childFile('AndroidManifest.xml');
applicationFile.createSync(recursive: true);
applicationFile.writeAsStringSync(r'''
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.multidexapp">
<application
android:label="multidextest2"
android:icon="@mipmap/ic_launcher">
</application>
''', flush: true);
expect(androidManifestHasNameVariable(directory), false);
}, overrides: <Type, Generator>{
FileSystem: () => MemoryFileSystem.test(),
ProcessManager: () => FakeProcessManager.any(),
});
testUsingContext('androidManifestHasNameVariable false with incorrect android:name attribute', () async {
final Directory directory = globals.fs.currentDirectory;
final File applicationFile = directory.childDirectory('android')
.childDirectory('app')
.childDirectory('src')
.childDirectory('main')
.childFile('AndroidManifest.xml');
applicationFile.createSync(recursive: true);
applicationFile.writeAsStringSync(r'''
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.multidexapp">
<application
android:label="multidextest2"
android:name="io.flutter.app.FlutterApplication"
android:icon="@mipmap/ic_launcher">
</application>
''', flush: true);
expect(androidManifestHasNameVariable(directory), false);
}, overrides: <Type, Generator>{
FileSystem: () => MemoryFileSystem.test(),
ProcessManager: () => FakeProcessManager.any(),
});
testUsingContext('androidManifestHasNameVariable false with invalid xml manifest', () async {
final Directory directory = globals.fs.currentDirectory;
final File applicationFile = directory.childDirectory('android')
.childDirectory('app')
.childDirectory('src')
.childDirectory('main')
.childFile('AndroidManifest.xml');
applicationFile.createSync(recursive: true);
applicationFile.writeAsStringSync(r'''
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.multidexapp">
<application
android:label="multidextest2"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
</application>
''', flush: true);
expect(androidManifestHasNameVariable(directory), false);
}, overrides: <Type, Generator>{
FileSystem: () => MemoryFileSystem.test(),
ProcessManager: () => FakeProcessManager.any(),
});
testUsingContext('androidManifestHasNameVariable false with no manifest file', () async {
final Directory directory = globals.fs.currentDirectory;
expect(androidManifestHasNameVariable(directory), false);
}, overrides: <Type, Generator>{
FileSystem: () => MemoryFileSystem.test(),
ProcessManager: () => FakeProcessManager.any(),
});
}
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:file/file.dart';
import 'package:flutter_tools/src/base/io.dart';
import '../src/common.dart';
import 'test_data/multidex_project.dart';
import 'test_driver.dart';
import 'test_utils.dart';
void main() {
late Directory tempDir;
late FlutterRunTestDriver flutter;
setUp(() async {
tempDir = createResolvedTempDirectorySync('run_test.');
flutter = FlutterRunTestDriver(tempDir);
});
tearDown(() async {
await flutter.stop();
tryToDelete(tempDir);
});
testWithoutContext('simple build apk succeeds', () async {
final MultidexProject project = MultidexProject(true);
await project.setUpIn(tempDir);
final String flutterBin = fileSystem.path.join(getFlutterRoot(), 'bin', 'flutter');
final ProcessResult result = await processManager.run(<String>[
flutterBin,
...getLocalEngineArguments(),
'build',
'apk',
'--debug',
], workingDirectory: tempDir.path);
expect(result, const ProcessResultMatcher(stdoutPattern: 'app-debug.apk'));
});
testWithoutContext('simple build apk without FlutterMultiDexApplication fails', () async {
final MultidexProject project = MultidexProject(false);
await project.setUpIn(tempDir);
final String flutterBin = fileSystem.path.join(getFlutterRoot(), 'bin', 'flutter');
final ProcessResult result = await processManager.run(<String>[
flutterBin,
...getLocalEngineArguments(),
'build',
'apk',
'--debug',
], workingDirectory: tempDir.path);
expect(result, const ProcessResultMatcher(exitCode: 1));
expect(result.stderr.toString(), contains('Cannot fit requested classes in a single dex file'));
expect(result.stderr.toString(), contains('The number of method references in a .dex file cannot exceed 64K.'));
});
}
...@@ -87,7 +87,7 @@ class DeferredComponentModule { ...@@ -87,7 +87,7 @@ class DeferredComponentModule {
} }
defaultConfig { defaultConfig {
minSdkVersion 19 minSdkVersion 21
targetSdkVersion 33 targetSdkVersion 33
versionCode flutterVersionCode.toInteger() versionCode flutterVersionCode.toInteger()
versionName flutterVersionName versionName flutterVersionName
......
...@@ -43,7 +43,7 @@ android { ...@@ -43,7 +43,7 @@ android {
} }
defaultConfig { defaultConfig {
minSdkVersion 19 minSdkVersion 21
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'lib-proguard-rules.txt' consumerProguardFiles 'lib-proguard-rules.txt'
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment