Skip to content

Commit

Permalink
Merge pull request #26 from babydots/bump-for-release-v1.1.3
Browse files Browse the repository at this point in the history
Bump for release v1.1.3 - Russian
  • Loading branch information
pserwylo authored Sep 26, 2023
2 parents 4704d5d + 3651cbf commit 69ad246
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 8 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,27 @@ name: Android CI

on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: set up JDK 1.8
uses: actions/setup-java@v1

- uses: actions/checkout@v4

- name: set up JDK 17
uses: actions/setup-java@v2
with:
java-version: 1.8
distribution: temurin
java-version: 17

- name: Gradle build
run: ./gradlew build

- name: Gradle check
run: ./gradlew check
11 changes: 9 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
applicationId "com.serwylo.babyphone"
minSdkVersion 26
targetSdkVersion 33
versionCode 14
versionName "1.1.2"
versionCode 15
versionName "1.1.3"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand All @@ -29,6 +29,13 @@ android {
}
}

lint {
// This is from:
// Error: When targeting Android 13 or higher, posting a permission requires holding the POST_NOTIFICATIONS permission (usage from com.squareup.picasso.RemoteViewsAction.NotificationAction) [NotificationPermission]
// Although we use this library, we don't use the part of the library.
disable 'NotificationPermission'
}

buildTypes {
release {
minifyEnabled false
Expand Down
4 changes: 4 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/15.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Translations:
* Russian (thanks to @Coobik)

Want to see this app in your language? Please join us on Weblate to contribute a translation.

0 comments on commit 69ad246

Please sign in to comment.