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
395d27aa
Unverified
Commit
395d27aa
authored
Jun 04, 2020
by
Jonah Williams
Committed by
GitHub
Jun 04, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Collect list of Android plugins from .flutter-plugins-dependencies (#57907)" (#58732)
This reverts commit
253eb1cf
.
parent
f2320c3b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
20 deletions
+9
-20
flutter.gradle
packages/flutter_tools/gradle/flutter.gradle
+9
-20
No files found.
packages/flutter_tools/gradle/flutter.gradle
View file @
395d27aa
...
...
@@ -372,28 +372,17 @@ class FlutterPlugin implements Plugin<Project> {
}
private
Properties
getPluginList
()
{
File
pluginsFile
=
new
File
(
project
.
projectDir
.
parentFile
.
parentFile
,
'.flutter-plugins'
)
Properties
allPlugins
=
readPropertiesIfExist
(
pluginsFile
)
Properties
androidPlugins
=
new
Properties
()
def
flutterProjectRoot
=
project
.
projectDir
.
parentFile
.
parentFile
def
pluginsFile
=
new
File
(
flutterProjectRoot
,
'.flutter-plugins-dependencies'
)
if
(!
pluginsFile
.
exists
())
{
return
androidPlugins
}
def
object
=
new
JsonSlurper
().
parseText
(
pluginsFile
.
text
)
assert
object
instanceof
Map
assert
object
.
plugins
instanceof
Map
assert
object
.
plugins
.
android
instanceof
List
// Includes the Flutter plugins that support the Android platform.
object
.
plugins
.
android
.
each
{
androidPlugin
->
assert
androidPlugin
.
name
instanceof
String
assert
androidPlugin
.
path
instanceof
String
def
pluginDirectory
=
new
File
(
androidPlugin
.
path
,
'android'
)
assert
pluginDirectory
.
exists
()
androidPlugins
.
setProperty
(
androidPlugin
.
name
,
androidPlugin
.
path
)
allPlugins
.
each
{
name
,
path
->
if
(
doesSupportAndroidPlatform
(
path
))
{
androidPlugins
.
setProperty
(
name
,
path
)
}
// TODO(amirh): log an error if this plugin was specified to be an Android
// plugin according to the new schema, and was missing a build.gradle file.
// https://github.com/flutter/flutter/issues/40784
}
return
androidPlugins
}
...
...
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