Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
font_awesome_flutter
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
Kulya
font_awesome_flutter
Commits
eb705992
Unverified
Commit
eb705992
authored
Feb 02, 2018
by
Brian Egan
Committed by
GitHub
Feb 02, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6 from brianegan/fix-gradle
Update gradle
parents
ccdf2f0f
328b89bf
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
10 deletions
+14
-10
build.gradle
example/android/app/build.gradle
+8
-5
build.gradle
example/android/build.gradle
+5
-4
main.dart
example/lib/main.dart
+1
-1
No files found.
example/android/app/build.gradle
View file @
eb705992
...
...
@@ -15,8 +15,8 @@ apply plugin: 'com.android.application'
apply
from:
"$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android
{
compileSdkVersion
2
5
buildToolsVersion
'2
5
.0.3'
compileSdkVersion
2
7
buildToolsVersion
'2
7
.0.3'
lintOptions
{
disable
'InvalidPackage'
...
...
@@ -35,6 +35,9 @@ android {
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig
signingConfigs
.
debug
}
profile
{
matchingFallbacks
=
[
'debug'
,
'release'
]
}
}
}
...
...
@@ -43,7 +46,7 @@ flutter {
}
dependencies
{
androidTestCompile
'com.android.support:support-annotations:25.4.0
'
androidTest
Compile
'com.android.support.test:runner:0.5
'
androidTest
Compile
'com.android.support.test:rules:0.5
'
testImplementation
'junit:junit:4.12
'
androidTest
Implementation
'com.android.support.test:runner:1.0.1
'
androidTest
Implementation
'com.android.support.test.espresso:espresso-core:3.0.1
'
}
example/android/build.gradle
View file @
eb705992
buildscript
{
repositories
{
google
()
jcenter
()
}
dependencies
{
classpath
'com.android.tools.build:gradle:
2.2.3
'
classpath
'com.android.tools.build:gradle:
3.0.1
'
}
}
allprojects
{
repositories
{
google
()
jcenter
()
maven
{
url
"https://maven.google.com"
}
}
}
rootProject
.
buildDir
=
'../build'
subprojects
{
project
.
buildDir
=
"${rootProject.buildDir}/${project.name}"
}
subprojects
{
project
.
evaluationDependsOn
(
':app'
)
}
...
...
example/lib/main.dart
View file @
eb705992
...
...
@@ -136,7 +136,7 @@ class FontAwesomeGalleryHomeState extends State<FontAwesomeGalleryHome> {
onChanged:
(
text
)
=>
setState
(()
=>
_searchTerm
=
text
),
autofocus:
true
,
style:
new
TextStyle
(
fontSize:
18.0
),
decoration:
new
InputDecoration
(
hideDivider:
tru
e
),
decoration:
new
InputDecoration
(
border:
InputBorder
.
non
e
),
),
);
}
...
...
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