Skip to content

Commit

Permalink
Release - 2.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
iamrasel committed Jun 23, 2023
1 parent 18d6604 commit 3f8a8c1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
applicationId = "rasel.lunar.launcher"
minSdk = 26
targetSdk = 33
versionCode = 32
versionName = "2.7"
versionCode = 33
versionName = "2.7.1"
}

buildTypes {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.LunarLauncher"
android:excludeFromRecents="true"
android:clearTaskOnLaunch="true"
android:stateNotNeeded="true"
Expand All @@ -53,7 +54,6 @@
<activity
android:name=".settings.SettingsActivity"
android:label="@string/lunar_settings"
android:theme="@style/Theme.LunarLauncher"
android:launchMode="singleTask"
android:exported="true">
<intent-filter>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ internal class LauncherActivity : AppCompatActivity() {
}

private fun topPadding(topPadding: Boolean) {
ViewCompat.setOnApplyWindowInsetsListener(window.decorView) { view, windowInsets ->
ViewCompat.setOnApplyWindowInsetsListener(binding.root) { view, windowInsets ->
windowInsets.getInsets(WindowInsetsCompat.Type.systemGestures()).let {
val topInset = if (topPadding) {
if (it.top == 0) windowInsets.getInsets(WindowInsetsCompat.Type.systemBars()).top
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ internal class Advance : BottomSheetDialogFragment() {
dialog.dismiss()
Runtime.getRuntime().exec("pm clear " + requireContext().packageName)
}
.setNeutralButton(android.R.string.cancel) {dialog, _ -> dialog.dismiss() }
.setNeutralButton(android.R.string.cancel) { dialog, _ -> dialog.dismiss() }
.show()
}

Expand Down
2 changes: 0 additions & 2 deletions fastlane/metadata/android/en-US/changelogs/30.txt

This file was deleted.

1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/33.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fixes some ui issues

0 comments on commit 3f8a8c1

Please sign in to comment.