Skip to content

Commit ef732fc

Browse files
authored
Merge pull request #177 from YkSix/proguard_rule_for_BR
Update consumer-proguard-rules for BR class
2 parents 5ae61e4 + c0be679 commit ef732fc

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.github/workflows/pull-request-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Build debug APK
3636
run: bash ./gradlew :line-sdk:assembleDebug --stacktrace
3737
- name: Upload APK
38-
uses: actions/upload-artifact@v3
38+
uses: actions/upload-artifact@v4
3939
with:
4040
name: line-sdk
4141
path: line-sdk/build/outputs/aar/line-sdk-*-debug.aar

app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ android {
5151
}
5252

5353
dependencies {
54-
implementation("com.linecorp.linesdk:linesdk:5.11.0")
54+
implementation("com.linecorp.linesdk:linesdk:5.11.1")
5555
implementation("androidx.core:core-ktx:1.9.0")
5656
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.5.1")
5757
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.5.1")

line-sdk/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ apply plugin: 'maven-publish'
77
apply plugin: 'signing'
88

99
group = "com.linecorp.linesdk"
10-
version = "5.11.0"
10+
version = "5.11.1"
1111

1212
android {
1313
compileSdk 33
1414

1515
defaultConfig {
1616
minSdkVersion 24
1717
targetSdkVersion 33
18-
versionCode 5_11_00
18+
versionCode 5_11_01
1919
versionName version
2020

2121
consumerProguardFiles 'consumer-proguard-rules.pro'

line-sdk/consumer-proguard-rules.pro

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@
2727
-dontwarn org.spongycastle.jce.provider.X509LDAPCertStoreSpi
2828
-dontwarn org.spongycastle.x509.util.LDAPStoreHelper
2929

30+
# Ignore warnings about the missing BR class from the LINE SDK.
31+
# The BR class is generated by Android Data Binding and is only present during the library's own build process.
32+
# It is not included in the published AAR, so references to com.linecorp.linesdk.BR are safe to ignore.
33+
-dontwarn com.linecorp.linesdk.BR
34+
3035
# start for jjwt library
3136
-keep class io.jsonwebtoken.** { *; }
3237

0 commit comments

Comments
 (0)