File tree 5 files changed +40
-5
lines changed
app/src/main/java/com/google/android/samples/socialite/ui
5 files changed +40
-5
lines changed Original file line number Diff line number Diff line change
1
+ name : Pull Request
2
+
3
+ on :
4
+ pull_request :
5
+ types : [ opened, synchronize, reopened ]
6
+
7
+ permissions :
8
+ contents : write
9
+ actions : read
10
+
11
+ jobs :
12
+ build :
13
+ runs-on : ubuntu-latest
14
+ timeout-minutes : 60
15
+
16
+ steps :
17
+ - name : Checkout
18
+ uses : actions/checkout@v4
19
+
20
+ - name : Validate Gradle Wrapper
21
+ uses : gradle/wrapper-validation-action@v2
22
+
23
+ - name : Setup JDK
24
+ uses : actions/setup-java@v4
25
+ with :
26
+ distribution : ' zulu'
27
+ java-version : 17
28
+
29
+ - name : Setup Gradle
30
+ uses : gradle/gradle-build-action@v3
31
+
32
+ - name : Check spotless
33
+ run : ./gradlew spotlessCheck
34
+
35
+ - name : Build App
36
+ run : ./gradlew :app:assembleDebug
Original file line number Diff line number Diff line change 11
11
/.idea /navEditor.xml
12
12
/.idea /assetWizardSettings.xml
13
13
/.idea /deploymentTargetDropDown.xml
14
+ /.idea /deploymentTargetSelector.xml
14
15
/.idea /misc.xml
15
16
/.idea /migrations.xml
16
17
/.idea /gradle.xml
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ import androidx.compose.animation.core.tween
26
26
import androidx.compose.animation.fadeIn
27
27
import androidx.compose.animation.fadeOut
28
28
import androidx.compose.foundation.layout.fillMaxSize
29
- import androidx.compose.material3.Surface
30
29
import androidx.compose.runtime.Composable
31
30
import androidx.compose.ui.Modifier
32
31
import androidx.compose.ui.platform.LocalContext
@@ -55,9 +54,7 @@ fun Main(
55
54
) {
56
55
val modifier = Modifier .fillMaxSize()
57
56
SocialTheme {
58
- Surface (modifier = modifier) {
59
- MainNavigation (modifier, shortcutParams)
60
- }
57
+ MainNavigation (modifier, shortcutParams)
61
58
}
62
59
}
63
60
Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ fun Home(
64
64
onDestinationChanged = { destination = it },
65
65
)
66
66
},
67
+ containerColor = Color .Transparent ,
67
68
) { innerPadding ->
68
69
val navController = rememberNavController()
69
70
HomeBackground (modifier = Modifier .fillMaxSize())
Original file line number Diff line number Diff line change 15
15
[versions ]
16
16
accompanist = " 0.32.0"
17
17
activity = " 1.9.0-alpha01"
18
- agp = " 8.2.1 "
18
+ agp = " 8.2.2 "
19
19
benchmarkMacroJunit4 = " 1.2.2"
20
20
baselineprofile = " 1.2.2"
21
21
camera = " 1.3.1"
You can’t perform that action at this time.
0 commit comments