Skip to content

Commit

Permalink
Merge pull request #295 from PermanentOrg/bugfix/android-pdf-viewer-fix
Browse files Browse the repository at this point in the history
Fix based on this:
  • Loading branch information
flaviuvsp authored Aug 27, 2024
2 parents a26909a + c23838e commit 09e78b0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,8 @@ dependencies {
//======================================== RECYCLER VIEW =======================================
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
implementation 'com.chauthai.swipereveallayout:swipe-reveal-layout:1.4.1'
implementation 'com.github.chthai64:SwipeRevealLayout:1.4.0'

//==============================================================================================

//=================================== ONBOARDING DOT INDICATOR =================================
Expand All @@ -171,7 +172,7 @@ dependencies {

//========================================= PICASSO ============================================
implementation 'com.squareup.picasso:picasso:2.71828'
implementation 'jp.wasabeef:picasso-transformations:2.2.1' // For blur
implementation 'com.github.wasabeef:picasso-transformations:2.4.0'
//==============================================================================================

//========================================= NETWORK ============================================
Expand All @@ -182,7 +183,8 @@ dependencies {
//==============================================================================================

//========================================= PDF VIEWER =========================================
implementation 'com.github.barteksc:android-pdf-viewer:2.8.2'
implementation 'com.github.DImuthuUpe:AndroidPdfViewer:2.8.1'

//==============================================================================================

//========================================= STRIPE =========++++================================
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/item_list_record.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<com.chauthai.swipereveallayout.SwipeRevealLayout
android:id="@+id/layoutSwipeReveal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
app:dragEdge="right"
app:mode="normal">

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/item_online_presence.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<com.chauthai.swipereveallayout.SwipeRevealLayout
android:id="@+id/layoutSwipeReveal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
app:mode="normal"
app:dragEdge="right">

Expand Down

0 comments on commit 09e78b0

Please sign in to comment.