File tree 4 files changed +9
-6
lines changed 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ if (keystorePropertiesFile.exists()) {
32
32
}
33
33
34
34
android {
35
- compileSdkVersion 27
35
+ compileSdkVersion 28
36
36
37
37
lintOptions {
38
38
disable ' InvalidPackage'
@@ -42,10 +42,10 @@ android {
42
42
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
43
43
applicationId " com.flutter.beer"
44
44
minSdkVersion 16
45
- targetSdkVersion 27
45
+ targetSdkVersion 28
46
46
versionCode flutterVersionCode. toInteger()
47
47
versionName flutterVersionName
48
- testInstrumentationRunner " android.support .test.runner.AndroidJUnitRunner"
48
+ testInstrumentationRunner " androidx .test.runner.AndroidJUnitRunner"
49
49
}
50
50
51
51
signingConfigs {
@@ -79,8 +79,8 @@ flutter {
79
79
80
80
dependencies {
81
81
testImplementation ' junit:junit:4.12'
82
- androidTestImplementation ' com.android.support. test:runner:1.0.2 '
83
- androidTestImplementation ' com.android.support. test.espresso:espresso-core:3.0.2 '
82
+ androidTestImplementation ' androidx. test:runner:1.1.0-alpha4 '
83
+ androidTestImplementation ' androidx. test.espresso:espresso-core:3.1.0-alpha4 '
84
84
// firebase
85
85
implementation ' com.google.firebase:firebase-core:16.0.8'
86
86
// Crashlytics SDK
Original file line number Diff line number Diff line change 1
1
org.gradle.jvmargs =-Xmx1536M
2
+ android.useAndroidX =true
3
+ android.enableJetifier =true
Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ class _IndexState extends State<Index>
70
70
71
71
Widget _TabBar () {
72
72
return TabBar (
73
+ indicatorColor: Color (AppTheme .secondColor),
73
74
controller: _tabController,
74
75
isScrollable: true ,
75
76
tabs: _mapList.map ((v) {
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ description: A new Flutter project.
7
7
# Both the version and the builder number may be overridden in flutter
8
8
# build by specifying --build-name and --build-number, respectively.
9
9
# Read more about versioning at semver.org.
10
- version : 1.0.0 +1
10
+ version : 1.0.1 +1
11
11
12
12
environment :
13
13
sdk : " >=2.1.0 <3.0.0"
You can’t perform that action at this time.
0 commit comments