Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ android {
applicationId = "co.adityarajput.notifilter"
minSdk = 29
targetSdk = 36
versionCode = 28
versionName = "4.9.0"
versionCode = 29
versionName = "4.9.1"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
2 changes: 2 additions & 0 deletions app/proguard/nightly.pro
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
public static int i(...);
public static int e(...);
}

-keep class net.fellbaum.jemoji.Emoji { *; }
2 changes: 2 additions & 0 deletions app/proguard/release.pro
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@
-assumenosideeffects class co.adityarajput.notifilter.utils.Logger {
public final void d(...);
}

-keep class net.fellbaum.jemoji.Emoji { *; }
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ class UpsertFilterViewModel(
state = State(page, values, getError(page, values), getWarnings(page, values))
}

@Suppress("UnusedEquals")
private fun getError(
page: FormPage = state.page,
values: Values = state.values,
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<resources>
<string name="app_name" translatable="false">NotiFilter</string>
<string name="app_name_launcher" translatable="false">NotiFilter</string>
<string name="app_version" translatable="false">4.9.0</string>
<string name="app_version" translatable="false">4.9.1</string>

<!-- region FiltersScreen -->
<string name="no_filters">No filters added.\nTap + to get started.</string>
Expand Down
1 change: 1 addition & 0 deletions metadata/en-US/changelogs/29.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fix: Include necessary internal classes
Loading