File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed
Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ android {
5151}
5252
5353dependencies {
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" )
Original file line number Diff line number Diff line change @@ -7,15 +7,15 @@ apply plugin: 'maven-publish'
77apply plugin : ' signing'
88
99group = " com.linecorp.linesdk"
10- version = " 5.11.0 "
10+ version = " 5.11.1 "
1111
1212android {
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'
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments