Skip to content

Commit

Permalink
Update V3.3
Browse files Browse the repository at this point in the history
fixes #111
  • Loading branch information
woheller69 committed Oct 16, 2024
1 parent b0eaebf commit e5d3454
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ apply plugin: 'com.android.application'

android {

compileSdkVersion 34
compileSdk 34

defaultConfig {
applicationId "org.woheller69.omweather"
minSdkVersion 21
targetSdkVersion 34
versionCode 32
versionName "3.2"
minSdk 21
targetSdk 34
versionCode 33
versionName "3.3"

buildConfigField "String", "BASE_URL", "\"https://api.open-meteo.com/v1/\""
buildConfigField "String", "GITHUB_URL","\"https://github.com/woheller69/omweather/\""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ public void onEnabled(Context context) {

for (int widgetID : widgetIDs) {

RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.weather_widget);
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.weather_widget_all_in_one);
AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);

CityToWatch city=dbHelper.getCityToWatch(widgetCityID);
Expand Down
2 changes: 2 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/33.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Belarusian translation
Bugfix

0 comments on commit e5d3454

Please sign in to comment.