Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Build debug APK
run: bash ./gradlew :line-sdk:assembleDebug --stacktrace
- name: Upload APK
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: line-sdk
path: line-sdk/build/outputs/aar/line-sdk-*-debug.aar
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ android {
}

dependencies {
implementation("com.linecorp.linesdk:linesdk:5.11.0")
implementation("com.linecorp.linesdk:linesdk:5.11.1")
implementation("androidx.core:core-ktx:1.9.0")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.5.1")
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.5.1")
Expand Down
4 changes: 2 additions & 2 deletions line-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ apply plugin: 'maven-publish'
apply plugin: 'signing'

group = "com.linecorp.linesdk"
version = "5.11.0"
version = "5.11.1"

android {
compileSdk 33

defaultConfig {
minSdkVersion 24
targetSdkVersion 33
versionCode 5_11_00
versionCode 5_11_01
versionName version

consumerProguardFiles 'consumer-proguard-rules.pro'
Expand Down
5 changes: 5 additions & 0 deletions line-sdk/consumer-proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@
-dontwarn org.spongycastle.jce.provider.X509LDAPCertStoreSpi
-dontwarn org.spongycastle.x509.util.LDAPStoreHelper

# Ignore warnings about the missing BR class from the LINE SDK.
# The BR class is generated by Android Data Binding and is only present during the library's own build process.
# It is not included in the published AAR, so references to com.linecorp.linesdk.BR are safe to ignore.
-dontwarn com.linecorp.linesdk.BR

# start for jjwt library
-keep class io.jsonwebtoken.** { *; }

Expand Down