Skip to content

Commit

Permalink
feat: release 2.2.3 (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
gajjartejas authored Jun 24, 2024
1 parent 0dff1e5 commit d320c01
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ android {
applicationId "com.tejasgajjar.miuiadshelper"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 25
versionName "2.2.2"
versionCode 26
versionName "2.2.3"
missingDimensionStrategy "store", "play"
}

Expand Down
6 changes: 4 additions & 2 deletions app/screens/Home/DashboardTab/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ const DashboardTab = ({}: any) => {
item.appType === IAdsSettingAppType.AudioVideo ||
item.appType === IAdsSettingAppType.ThemeLockScreen ||
item.appType === IAdsSettingAppType.Utilities ||
item.appType === IAdsSettingAppType.Internet;
item.appType === IAdsSettingAppType.Internet ||
item.appType === IAdsSettingAppType.Security;

if (!freeUnlockForCategories && !purchased) {
navigation.navigate('Purchase', { route: 'AdsDetails', params: { item: item } });
Expand All @@ -80,7 +81,8 @@ const DashboardTab = ({}: any) => {
item.appType === IAdsSettingAppType.AudioVideo ||
item.appType === IAdsSettingAppType.ThemeLockScreen ||
item.appType === IAdsSettingAppType.Utilities ||
item.appType === IAdsSettingAppType.Internet;
item.appType === IAdsSettingAppType.Internet ||
item.appType === IAdsSettingAppType.Security;
return (
<Components.AdsListItem
key={item.id}
Expand Down
4 changes: 2 additions & 2 deletions ios/MIUIAdsHelper.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.2.2;
MARKETING_VERSION = 2.2.3;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand All @@ -615,7 +615,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.2.2;
MARKETING_VERSION = 2.2.3;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand Down

0 comments on commit d320c01

Please sign in to comment.