We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bc8983 commit f356a53Copy full SHA for f356a53
2 files changed
api/build.gradle.kts
@@ -36,6 +36,10 @@ android {
36
}
37
38
39
+ publishing {
40
+ singleVariant("release") {}
41
+ }
42
+
43
defaultConfig {
44
minSdk {
45
version = release(26)
app/src/main/java/app/revanced/manager/ui/screen/OnboardingScreen.kt
@@ -293,7 +293,10 @@ fun OnboardingScreen(
293
294
},
295
dismissButton = {
296
- TextButton(onClick = { showSkipPermissionsDialog = false }, shapes = ButtonDefaults.shapes()) {
+ TextButton(
297
+ onClick = { showSkipPermissionsDialog = false },
298
+ shapes = ButtonDefaults.shapes()
299
+ ) {
300
Text(stringResource(R.string.cancel))
301
302
0 commit comments