upgrade dependencies

This commit is contained in:
Page Asgardius 2023-02-22 09:56:07 -07:00
parent 4472e863e6
commit fc2304b273
3 changed files with 8 additions and 8 deletions

View file

@ -33,16 +33,16 @@ android {
dependencies { dependencies {
implementation 'androidx.appcompat:appcompat:1.6.0' implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.7.0' implementation 'com.google.android.material:material:1.8.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
def exoplayer_version = "2.18.2" def exoplayer_version = "2.18.3"
implementation "com.google.android.exoplayer:exoplayer:$exoplayer_version" implementation "com.google.android.exoplayer:exoplayer:$exoplayer_version"
implementation "com.google.android.exoplayer:extension-mediasession:$exoplayer_version" implementation "com.google.android.exoplayer:extension-mediasession:$exoplayer_version"
implementation 'androidx.recyclerview:recyclerview:1.2.1' implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation"com.otaliastudios:zoomlayout:1.9.0" implementation"com.otaliastudios:zoomlayout:1.9.0"
// BEGIN AWS DEPENDENCIES // BEGIN AWS DEPENDENCIES
def aws_version = "2.62.0" def aws_version = "2.64.0"
implementation "com.amazonaws:aws-android-sdk-s3:$aws_version" implementation "com.amazonaws:aws-android-sdk-s3:$aws_version"
implementation ("com.amazonaws:aws-android-sdk-mobile-client:$aws_version") { transitive = true } implementation ("com.amazonaws:aws-android-sdk-mobile-client:$aws_version") { transitive = true }
// END AWS DEPENDENCIES // END AWS DEPENDENCIES

View file

@ -9,8 +9,8 @@
<H3>Created by Page Asgardius</H3> <H3>Created by Page Asgardius</H3>
<H3>Libraries used in this app</H3> <H3>Libraries used in this app</H3>
<ul> <ul>
<li>Amazon Web Services SDK 2.62.0</li> <li>Amazon Web Services SDK 2.64.0</li>
<li>ExoPlayer 2.18.2</li> <li>ExoPlayer 2.18.3</li>
<li>ZoomLayout 1.9.0</li> <li>ZoomLayout 1.9.0</li>
<li>Adwaita Icon Theme for GNOME 43</li> <li>Adwaita Icon Theme for GNOME 43</li>
<li>pdf.js</li> <li>pdf.js</li>

View file

@ -330,11 +330,11 @@ public class VideoPlayer extends AppCompatActivity {
public void onDestroy() { public void onDestroy() {
if (!mWifiLock.isHeld()) { if (!mWifiLock.isHeld()) {
mWifiLock.acquire(); mWifiLock.release();
//System.out.println("WifiLock acquired"); //System.out.println("WifiLock acquired");
} }
if (!mWakeLock.isHeld()) { if (!mWakeLock.isHeld()) {
mWakeLock.acquire(); mWakeLock.release();
//System.out.println("WakeLock acquired"); //System.out.println("WakeLock acquired");
} }
mediaSessionConnector.setPlayer(null); mediaSessionConnector.setPlayer(null);