Skip to content

Commit 35148b0

Browse files
committed
Fixed GPP publish task + lint warnings
1 parent 19cef22 commit 35148b0

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: ./gradlew connectedCheck --no-daemon
3333
- name: Publish with Gradle
3434
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
35-
run: ./gradlew assembleRelease publish --no-daemon
35+
run: ./gradlew assembleRelease publishApps --no-daemon
3636
env:
3737
KEYSTORE_STORE_PASS: ${{ secrets.KEYSTORE_STORE_PASS }}
3838
KEYSTORE_KEY_ALIAS: gianlu

app/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ android {
5555
sourceCompatibility JavaVersion.VERSION_1_8
5656
targetCompatibility JavaVersion.VERSION_1_8
5757
}
58+
59+
lintOptions {
60+
warning 'MissingTranslation', 'Instantiatable'
61+
}
5862
}
5963

6064
play {

0 commit comments

Comments
 (0)