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
b083bc14
Unverified
Commit
b083bc14
authored
Apr 02, 2021
by
Jenn Magder
Committed by
GitHub
Apr 02, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Migrate android_sdk and application_package to null safety (#79611)
parent
75453e6a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
80 additions
and
77 deletions
+80
-77
android_sdk.dart
packages/flutter_tools/lib/src/android/android_sdk.dart
+75
-68
application_package.dart
packages/flutter_tools/lib/src/application_package.dart
+5
-9
No files found.
packages/flutter_tools/lib/src/android/android_sdk.dart
View file @
b083bc14
...
...
@@ -2,10 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// @dart = 2.8
import
'package:meta/meta.dart'
;
import
'../base/common.dart'
;
import
'../base/file_system.dart'
;
import
'../base/os.dart'
;
...
...
@@ -48,8 +44,8 @@ class AndroidSdk {
/// The Android SDK root directory.
final
Directory
directory
;
List
<
AndroidSdkVersion
>
_sdkVersions
;
AndroidSdkVersion
_latestVersion
;
List
<
AndroidSdkVersion
>
_sdkVersions
=
<
AndroidSdkVersion
>[]
;
AndroidSdkVersion
?
_latestVersion
;
/// Whether the `platform-tools` or `cmdline-tools` directory exists in the Android SDK.
///
...
...
@@ -69,9 +65,9 @@ class AndroidSdk {
/// the SDK on demand.
bool
get
licensesAvailable
=>
directory
.
childDirectory
(
'licenses'
).
existsSync
();
static
AndroidSdk
locateAndroidSdk
()
{
String
findAndroidHomeDir
()
{
String
androidHomeDir
;
static
AndroidSdk
?
locateAndroidSdk
()
{
String
?
findAndroidHomeDir
()
{
String
?
androidHomeDir
;
if
(
globals
.
config
.
containsKey
(
'android-sdk'
))
{
androidHomeDir
=
globals
.
config
.
getValue
(
'android-sdk'
)
as
String
;
}
else
if
(
globals
.
platform
.
environment
.
containsKey
(
kAndroidHome
))
{
...
...
@@ -81,7 +77,7 @@ class AndroidSdk {
}
else
if
(
globals
.
platform
.
isLinux
)
{
if
(
globals
.
fsUtils
.
homeDirPath
!=
null
)
{
androidHomeDir
=
globals
.
fs
.
path
.
join
(
globals
.
fsUtils
.
homeDirPath
,
globals
.
fsUtils
.
homeDirPath
!
,
'Android'
,
'Sdk'
,
);
...
...
@@ -89,7 +85,7 @@ class AndroidSdk {
}
else
if
(
globals
.
platform
.
isMacOS
)
{
if
(
globals
.
fsUtils
.
homeDirPath
!=
null
)
{
androidHomeDir
=
globals
.
fs
.
path
.
join
(
globals
.
fsUtils
.
homeDirPath
,
globals
.
fsUtils
.
homeDirPath
!
,
'Library'
,
'Android'
,
'sdk'
,
...
...
@@ -98,7 +94,7 @@ class AndroidSdk {
}
else
if
(
globals
.
platform
.
isWindows
)
{
if
(
globals
.
fsUtils
.
homeDirPath
!=
null
)
{
androidHomeDir
=
globals
.
fs
.
path
.
join
(
globals
.
fsUtils
.
homeDirPath
,
globals
.
fsUtils
.
homeDirPath
!
,
'AppData'
,
'Local'
,
'Android'
,
...
...
@@ -141,7 +137,7 @@ class AndroidSdk {
return
null
;
}
final
String
androidHomeDir
=
findAndroidHomeDir
();
final
String
?
androidHomeDir
=
findAndroidHomeDir
();
if
(
androidHomeDir
==
null
)
{
// No dice.
globals
.
printTrace
(
'Unable to locate an Android SDK.'
);
...
...
@@ -165,26 +161,29 @@ class AndroidSdk {
List
<
AndroidSdkVersion
>
get
sdkVersions
=>
_sdkVersions
;
AndroidSdkVersion
get
latestVersion
=>
_latestVersion
;
AndroidSdkVersion
?
get
latestVersion
=>
_latestVersion
;
String
get
adbPath
=>
_adbPath
??=
getPlatformToolsPath
(
globals
.
platform
.
isWindows
?
'adb.exe'
:
'adb'
);
String
_adbPath
;
String
?
get
adbPath
=>
_adbPath
??=
getPlatformToolsPath
(
globals
.
platform
.
isWindows
?
'adb.exe'
:
'adb'
);
String
?
_adbPath
;
String
get
emulatorPath
=>
getEmulatorPath
();
String
?
get
emulatorPath
=>
getEmulatorPath
();
String
get
avdManagerPath
=>
getAvdManagerPath
();
String
?
get
avdManagerPath
=>
getAvdManagerPath
();
/// Locate the path for storing AVD emulator images. Returns null if none found.
String
getAvdPath
()
{
String
?
getAvdPath
()
{
final
String
?
avdHome
=
globals
.
platform
.
environment
[
'ANDROID_AVD_HOME'
];
final
String
?
home
=
globals
.
platform
.
environment
[
'HOME'
];
final
List
<
String
>
searchPaths
=
<
String
>[
globals
.
platform
.
environment
[
'ANDROID_AVD_HOME'
],
if
(
globals
.
platform
.
environment
[
'HOME'
]
!=
null
)
globals
.
fs
.
path
.
join
(
globals
.
platform
.
environment
[
'HOME'
],
'.android'
,
'avd'
),
if
(
avdHome
!=
null
)
avdHome
,
if
(
home
!=
null
)
globals
.
fs
.
path
.
join
(
home
,
'.android'
,
'avd'
),
];
if
(
globals
.
platform
.
isWindows
)
{
final
String
homeDrive
=
globals
.
platform
.
environment
[
'HOMEDRIVE'
];
final
String
homePath
=
globals
.
platform
.
environment
[
'HOMEPATH'
];
final
String
?
homeDrive
=
globals
.
platform
.
environment
[
'HOMEDRIVE'
];
final
String
?
homePath
=
globals
.
platform
.
environment
[
'HOMEPATH'
];
if
(
homeDrive
!=
null
&&
homePath
!=
null
)
{
// Can't use path.join for HOMEDRIVE/HOMEPATH
...
...
@@ -194,10 +193,12 @@ class AndroidSdk {
}
}
return
searchPaths
.
where
((
String
p
)
=>
p
!=
null
).
firstWhere
(
(
String
p
)
=>
globals
.
fs
.
directory
(
p
).
existsSync
(),
orElse:
()
=>
null
,
);
for
(
final
String
searchPath
in
searchPaths
.
whereType
<
String
>())
{
if
(
globals
.
fs
.
directory
(
searchPath
).
existsSync
())
{
return
searchPath
;
}
}
return
null
;
}
Directory
get
_platformsDir
=>
directory
.
childDirectory
(
'platforms'
);
...
...
@@ -232,10 +233,10 @@ class AndroidSdk {
return
<
String
>[
msg
.
toString
()];
}
return
latestVersion
.
validateSdkWellFormed
();
return
latestVersion
!
.
validateSdkWellFormed
();
}
String
getPlatformToolsPath
(
String
binaryName
)
{
String
?
getPlatformToolsPath
(
String
binaryName
)
{
final
File
cmdlineToolsBinary
=
directory
.
childDirectory
(
'cmdline-tools'
).
childFile
(
binaryName
);
if
(
cmdlineToolsBinary
.
existsSync
())
{
return
cmdlineToolsBinary
.
path
;
...
...
@@ -247,7 +248,7 @@ class AndroidSdk {
return
null
;
}
String
getEmulatorPath
()
{
String
?
getEmulatorPath
()
{
final
String
binaryName
=
globals
.
platform
.
isWindows
?
'emulator.exe'
:
'emulator'
;
// Emulator now lives inside "emulator" but used to live inside "tools" so
// try both.
...
...
@@ -261,7 +262,7 @@ class AndroidSdk {
return
null
;
}
String
getCmdlineToolsPath
(
String
binaryName
)
{
String
?
getCmdlineToolsPath
(
String
binaryName
)
{
// First look for the latest version of the command-line tools
final
File
cmdlineToolsLatestBinary
=
directory
.
childDirectory
(
'cmdline-tools'
)
...
...
@@ -285,7 +286,7 @@ class AndroidSdk {
return
null
;
}
})
.
where
((
Version
version
)
=>
version
!=
null
)
.
where
Type
<
Version
>(
)
.
toList
();
cmdlineTools
.
sort
();
...
...
@@ -310,7 +311,7 @@ class AndroidSdk {
return
null
;
}
String
getAvdManagerPath
()
=>
getCmdlineToolsPath
(
globals
.
platform
.
isWindows
?
'avdmanager.bat'
:
'avdmanager'
);
String
?
getAvdManagerPath
()
=>
getCmdlineToolsPath
(
globals
.
platform
.
isWindows
?
'avdmanager.bat'
:
'avdmanager'
);
/// Sets up various paths used internally.
///
...
...
@@ -330,33 +331,37 @@ class AndroidSdk {
return
null
;
}
})
.
where
((
Version
version
)
=>
version
!=
null
)
.
where
Type
<
Version
>(
)
.
toList
();
}
// Match up platforms with the best corresponding build-tools.
_sdkVersions
=
_platforms
.
map
<
AndroidSdkVersion
>((
Directory
platformDir
)
{
_sdkVersions
=
_platforms
.
map
<
AndroidSdkVersion
?
>((
Directory
platformDir
)
{
final
String
platformName
=
platformDir
.
basename
;
int
platformVersion
;
try
{
final
Match
numberedVersion
=
_numberedAndroidPlatformRe
.
firstMatch
(
platformName
);
final
Match
?
numberedVersion
=
_numberedAndroidPlatformRe
.
firstMatch
(
platformName
);
if
(
numberedVersion
!=
null
)
{
platformVersion
=
int
.
parse
(
numberedVersion
.
group
(
1
));
platformVersion
=
int
.
parse
(
numberedVersion
.
group
(
1
)
!
);
}
else
{
final
String
buildProps
=
platformDir
.
childFile
(
'build.prop'
).
readAsStringSync
();
final
String
versionString
=
const
LineSplitter
()
final
String
?
versionString
=
const
LineSplitter
()
.
convert
(
buildProps
)
.
map
<
Match
>(
_sdkVersionRe
.
firstMatch
)
.
firstWhere
((
Match
match
)
=>
match
!=
null
)
.
map
<
RegExpMatch
?>(
_sdkVersionRe
.
firstMatch
)
.
whereType
<
Match
>()
.
first
.
group
(
1
);
if
(
versionString
==
null
)
{
return
null
;
}
platformVersion
=
int
.
parse
(
versionString
);
}
}
on
Exception
{
return
null
;
}
Version
buildToolsVersion
=
Version
.
primary
(
buildTools
.
where
((
Version
version
)
{
Version
?
buildToolsVersion
=
Version
.
primary
(
buildTools
.
where
((
Version
version
)
{
return
version
.
major
==
platformVersion
;
}).
toList
());
...
...
@@ -373,7 +378,7 @@ class AndroidSdk {
buildToolsVersion:
buildToolsVersion
,
fileSystem:
globals
.
fs
,
);
}).
where
((
AndroidSdkVersion
version
)
=>
version
!=
null
).
toList
();
}).
where
Type
<
AndroidSdkVersion
>(
).
toList
();
_sdkVersions
.
sort
();
...
...
@@ -388,7 +393,7 @@ class AndroidSdk {
final
String
executable
=
globals
.
platform
.
isWindows
?
'sdkmanager.bat'
:
'sdkmanager'
;
final
String
path
=
getCmdlineToolsPath
(
executable
);
final
String
?
path
=
getCmdlineToolsPath
(
executable
);
if
(
path
!=
null
)
{
return
path
;
}
...
...
@@ -401,17 +406,17 @@ class AndroidSdk {
}
/// First try Java bundled with Android Studio, then sniff JAVA_HOME, then fallback to PATH.
static
String
findJavaBinary
({
@required
AndroidStudio
androidStudio
,
@
required
FileSystem
fileSystem
,
@
required
OperatingSystemUtils
operatingSystemUtils
,
@
required
Platform
platform
,
static
String
?
findJavaBinary
({
required
AndroidStudio
?
androidStudio
,
required
FileSystem
fileSystem
,
required
OperatingSystemUtils
operatingSystemUtils
,
required
Platform
platform
,
})
{
if
(
androidStudio
?.
javaPath
!=
null
)
{
return
fileSystem
.
path
.
join
(
androidStudio
.
javaPath
,
'bin'
,
'java'
);
return
fileSystem
.
path
.
join
(
androidStudio
!.
javaPath
!
,
'bin'
,
'java'
);
}
final
String
javaHomeEnv
=
platform
.
environment
[
_javaHomeEnvironmentVariable
];
final
String
?
javaHomeEnv
=
platform
.
environment
[
_javaHomeEnvironmentVariable
];
if
(
javaHomeEnv
!=
null
)
{
// Trust JAVA_HOME.
return
fileSystem
.
path
.
join
(
javaHomeEnv
,
'bin'
,
'java'
);
...
...
@@ -439,30 +444,30 @@ class AndroidSdk {
return
operatingSystemUtils
.
which
(
_javaExecutable
)?.
path
;
}
Map
<
String
,
String
>
_sdkManagerEnv
;
Map
<
String
,
String
>
?
_sdkManagerEnv
;
/// Returns an environment with the Java folder added to PATH for use in calling
/// Java-based Android SDK commands such as sdkmanager and avdmanager.
Map
<
String
,
String
>
get
sdkManagerEnv
{
if
(
_sdkManagerEnv
==
null
)
{
// If we can locate Java, then add it to the path used to run the Android SDK manager.
_sdkManagerEnv
=
<
String
,
String
>{};
final
String
javaBinary
=
findJavaBinary
(
final
String
?
javaBinary
=
findJavaBinary
(
androidStudio:
globals
.
androidStudio
,
fileSystem:
globals
.
fs
,
operatingSystemUtils:
globals
.
os
,
platform:
globals
.
platform
,
);
if
(
javaBinary
!=
null
)
{
_sdkManagerEnv
[
'PATH'
]
=
globals
.
fs
.
path
.
dirname
(
javaBinary
)
+
if
(
javaBinary
!=
null
&&
globals
.
platform
.
environment
[
'PATH'
]
!=
null
)
{
_sdkManagerEnv
!
[
'PATH'
]
=
globals
.
fs
.
path
.
dirname
(
javaBinary
)
+
globals
.
os
.
pathVarSeparator
+
globals
.
platform
.
environment
[
'PATH'
];
globals
.
platform
.
environment
[
'PATH'
]
!
;
}
}
return
_sdkManagerEnv
;
return
_sdkManagerEnv
!
;
}
/// Returns the version of the Android SDK manager tool or null if not found.
String
get
sdkManagerVersion
{
String
?
get
sdkManagerVersion
{
if
(!
globals
.
processManager
.
canRun
(
sdkManagerPath
))
{
throwToolExit
(
'Android sdkmanager not found. Update to the latest Android SDK to resolve this.'
);
}
...
...
@@ -484,10 +489,10 @@ class AndroidSdk {
class
AndroidSdkVersion
implements
Comparable
<
AndroidSdkVersion
>
{
AndroidSdkVersion
.
_
(
this
.
sdk
,
{
@
required
this
.
sdkLevel
,
@
required
this
.
platformName
,
@
required
this
.
buildToolsVersion
,
@
required
FileSystem
fileSystem
,
required
this
.
sdkLevel
,
required
this
.
platformName
,
required
this
.
buildToolsVersion
,
required
FileSystem
fileSystem
,
})
:
assert
(
sdkLevel
!=
null
),
assert
(
platformName
!=
null
),
assert
(
buildToolsVersion
!=
null
),
...
...
@@ -513,12 +518,14 @@ class AndroidSdkVersion implements Comparable<AndroidSdkVersion> {
String
get
aaptPath
=>
getBuildToolsPath
(
'aapt'
);
List
<
String
>
validateSdkWellFormed
()
{
if
(
_exists
(
androidJarPath
)
!=
null
)
{
return
<
String
>[
_exists
(
androidJarPath
)];
final
String
?
existsAndroidJarPath
=
_exists
(
androidJarPath
);
if
(
existsAndroidJarPath
!=
null
)
{
return
<
String
>[
existsAndroidJarPath
];
}
if
(
_canRun
(
aaptPath
)
!=
null
)
{
return
<
String
>[
_canRun
(
aaptPath
)];
final
String
?
canRunAaptPath
=
_canRun
(
aaptPath
);
if
(
canRunAaptPath
!=
null
)
{
return
<
String
>[
canRunAaptPath
];
}
return
<
String
>[];
...
...
@@ -538,14 +545,14 @@ class AndroidSdkVersion implements Comparable<AndroidSdkVersion> {
@override
String
toString
()
=>
'[
${sdk.directory}
, SDK version
$sdkLevel
, build-tools
$buildToolsVersionName
]'
;
String
_exists
(
String
path
)
{
String
?
_exists
(
String
path
)
{
if
(!
_fileSystem
.
isFileSync
(
path
))
{
return
'Android SDK file not found:
$path
.'
;
}
return
null
;
}
String
_canRun
(
String
path
)
{
String
?
_canRun
(
String
path
)
{
if
(!
globals
.
processManager
.
canRun
(
path
))
{
return
'Android SDK file not found:
$path
.'
;
}
...
...
packages/flutter_tools/lib/src/application_package.dart
View file @
b083bc14
...
...
@@ -2,16 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// @dart = 2.8
import
'package:meta/meta.dart'
;
import
'base/context.dart'
;
import
'base/file_system.dart'
;
import
'build_info.dart'
;
abstract
class
ApplicationPackageFactory
{
static
ApplicationPackageFactory
get
instance
=>
context
.
get
<
ApplicationPackageFactory
>();
static
ApplicationPackageFactory
?
get
instance
=>
context
.
get
<
ApplicationPackageFactory
>();
/// Create an [ApplicationPackage] for the given platform.
Future
<
ApplicationPackage
>
getPackageForPlatform
(
...
...
@@ -22,17 +18,17 @@ abstract class ApplicationPackageFactory {
}
abstract
class
ApplicationPackage
{
ApplicationPackage
({
@
required
this
.
id
})
ApplicationPackage
({
required
this
.
id
})
:
assert
(
id
!=
null
);
/// Package ID from the Android Manifest or equivalent.
final
String
id
;
String
get
name
;
String
?
get
name
;
String
get
displayName
=>
name
;
String
?
get
displayName
=>
name
;
File
get
packagesFile
=>
null
;
File
?
get
packagesFile
=>
null
;
@override
String
toString
()
=>
displayName
??
id
;
...
...
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