Skip to content

Commit

Permalink
Add firebase to android app
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali-Amin committed Aug 11, 2019
1 parent 31cc4fa commit e4652df
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ android {
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}

buildTypes {
Expand All @@ -59,3 +60,4 @@ dependencies {
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
}
apply plugin: 'com.google.gms.google-services'
1 change: 1 addition & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ buildscript {

dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:4.2.0'
}
}

Expand Down
4 changes: 2 additions & 2 deletions lib/screens/home/widgets/bottom_bar/bottom_bar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ class BottomBar extends StatelessWidget {
final HomeStore homeStore = Provider.of(context);
return ClipRRect(
borderRadius: BorderRadius.only(
topRight: Radius.circular(25),
topLeft: Radius.circular(25),
topRight: Radius.circular(40),
topLeft: Radius.circular(40),
),
child: Container(
height: 72,
Expand Down

0 comments on commit e4652df

Please sign in to comment.