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
12a0e475
Unverified
Commit
12a0e475
authored
May 24, 2019
by
Emmanuel Garcia
Committed by
GitHub
May 24, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make paths absolute in settings.gradle (#33228)
parent
1bd85dd6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
settings.gradle.copy.tmpl
...odule/android/host_app_editable/settings.gradle.copy.tmpl
+1
-1
settings.gradle.copy.tmpl
...dule/android/host_app_ephemeral/settings.gradle.copy.tmpl
+1
-1
settings.gradle.copy.tmpl
...emplates/module/android/library/settings.gradle.copy.tmpl
+1
-1
project_test.dart
packages/flutter_tools/test/project_test.dart
+1
-1
No files found.
packages/flutter_tools/templates/module/android/host_app_editable/settings.gradle.copy.tmpl
View file @
12a0e475
...
@@ -2,4 +2,4 @@
...
@@ -2,4 +2,4 @@
include ':app'
include ':app'
setBinding(new Binding([gradle: this]))
setBinding(new Binding([gradle: this]))
evaluate(new File(
'../
.android/include_flutter.groovy'))
evaluate(new File(
settingsDir.parentFile, '
.android/include_flutter.groovy'))
packages/flutter_tools/templates/module/android/host_app_ephemeral/settings.gradle.copy.tmpl
View file @
12a0e475
...
@@ -3,4 +3,4 @@ include ':app'
...
@@ -3,4 +3,4 @@ include ':app'
rootProject.name = 'android_generated'
rootProject.name = 'android_generated'
setBinding(new Binding([gradle: this]))
setBinding(new Binding([gradle: this]))
evaluate(new File('include_flutter.groovy'))
evaluate(new File(
settingsDir,
'include_flutter.groovy'))
packages/flutter_tools/templates/module/android/library/settings.gradle.copy.tmpl
View file @
12a0e475
...
@@ -2,4 +2,4 @@
...
@@ -2,4 +2,4 @@
rootProject.name = 'android_generated'
rootProject.name = 'android_generated'
setBinding(new Binding([gradle: this]))
setBinding(new Binding([gradle: this]))
evaluate(new File('include_flutter.groovy'))
evaluate(new File(
settingsDir,
'include_flutter.groovy'))
packages/flutter_tools/test/project_test.dart
View file @
12a0e475
...
@@ -126,7 +126,7 @@ void main() {
...
@@ -126,7 +126,7 @@ void main() {
expectExists
(
project
.
directory
.
childDirectory
(
'.android'
).
childDirectory
(
'Flutter'
));
expectExists
(
project
.
directory
.
childDirectory
(
'.android'
).
childDirectory
(
'Flutter'
));
expect
(
expect
(
project
.
directory
.
childDirectory
(
'android'
).
childFile
(
'settings.gradle'
).
readAsStringSync
(),
project
.
directory
.
childDirectory
(
'android'
).
childFile
(
'settings.gradle'
).
readAsStringSync
(),
contains
(
'
../.android/include_flutter.groovy
'
),
contains
(
'
new File(settingsDir.parentFile,
\'
.android/include_flutter.groovy
\'
)
'
),
);
);
});
});
testInMemory
(
'can be redone after deletion'
,
()
async
{
testInMemory
(
'can be redone after deletion'
,
()
async
{
...
...
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