File tree Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,6 @@ dependencies {
50
50
implementation ' com.google.android.material:material:1.8.0'
51
51
implementation ' com.google.code.gson:gson:2.9.0'
52
52
53
- implementation project(' :libDriveBackup' )
54
- // implementation 'com.github.fcat97:driveBackupApi:1.0.4'
53
+ // implementation project(':libDriveBackup')
54
+ implementation ' com.github.fcat97:driveBackupApi:1.0.4'
55
55
}
Original file line number Diff line number Diff line change @@ -96,6 +96,7 @@ class MainActivity : ComponentActivity() {
96
96
terminalOutputLiveData.observe(this ) { terminal.text = it }
97
97
98
98
getCurrentEmail()
99
+ printToTerminal(" [Welcome to drive backup]:" )
99
100
}
100
101
101
102
private fun startSendFlow () {
Original file line number Diff line number Diff line change 3
3
android : layout_width =" match_parent"
4
4
android : layout_height =" match_parent"
5
5
xmlns : tools =" http://schemas.android.com/tools"
6
+ xmlns : app =" http://schemas.android.com/apk/res-auto"
6
7
android : orientation =" vertical" >
7
8
9
+ <com .google.android.material.appbar.AppBarLayout
10
+ android : id =" @+id/appbar"
11
+ android : layout_width =" match_parent"
12
+ android : layout_height =" wrap_content" >
13
+ <com .google.android.material.appbar.MaterialToolbar
14
+ android : layout_width =" match_parent"
15
+ android : layout_height =" wrap_content"
16
+ android : background =" ?attr/colorPrimary"
17
+ app : titleTextColor =" @color/white"
18
+ app : title =" Drive Backup" />
19
+ </com .google.android.material.appbar.AppBarLayout>
20
+
21
+
8
22
<!-- Main content -->
9
23
<ScrollView
10
24
android : id =" @+id/buttonsScrollView"
11
25
android : layout_width =" match_parent"
12
26
android : layout_height =" 0dp"
13
- android : layout_above =" @id/scrollView "
14
- android : layout_alignParentTop = " true " >
27
+ android : layout_below =" @id/appbar "
28
+ android : layout_above = " @id/scrollView " >
15
29
<LinearLayout
16
30
android : layout_width =" match_parent"
17
31
android : layout_height =" wrap_content"
You can’t perform that action at this time.
0 commit comments