Skip to content

Commit fda4320

Browse files
authored
Merge pull request #281 from mgks/beta
camera fix for api 33
2 parents ef98d8b + 3741bd3 commit fda4320

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

app/build.gradle

+10-10
Original file line numberDiff line numberDiff line change
@@ -36,22 +36,22 @@ dependencies {
3636

3737
//implementation platform('com.google.firebase:firebase-bom:26.0.0')
3838
implementation 'com.google.firebase:firebase-core:21.1.1'
39-
implementation 'com.google.firebase:firebase-auth:21.1.0'
40-
implementation 'com.google.firebase:firebase-config:21.2.0'
39+
implementation 'com.google.firebase:firebase-auth:21.2.0'
40+
implementation 'com.google.firebase:firebase-config:21.3.0'
4141
implementation 'com.google.firebase:firebase-appindexing:20.0.0'
42-
implementation 'com.google.firebase:firebase-messaging:23.1.1'
42+
implementation 'com.google.firebase:firebase-messaging:23.1.2'
4343
implementation 'com.google.firebase:firebase-iid:21.1.0'
44-
implementation 'com.google.firebase:firebase-analytics:21.2.0'
44+
implementation 'com.google.firebase:firebase-analytics:21.2.1'
4545

46-
implementation 'com.google.android.material:material:1.8.0-rc01'
46+
implementation 'com.google.android.material:material:1.8.0'
4747
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
4848
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
49-
implementation 'androidx.appcompat:appcompat:1.6.0'
50-
implementation 'androidx.browser:browser:1.4.0'
51-
implementation 'androidx.work:work-runtime:2.7.1'
49+
implementation 'androidx.appcompat:appcompat:1.6.1'
50+
implementation 'androidx.browser:browser:1.5.0'
51+
implementation 'androidx.work:work-runtime:2.8.1'
5252

53-
implementation 'com.google.android.gms:play-services-auth:20.4.0'
54-
implementation 'com.google.android.gms:play-services-ads:21.4.0'
53+
implementation 'com.google.android.gms:play-services-auth:20.5.0'
54+
implementation 'com.google.android.gms:play-services-ads:22.0.0'
5555
implementation 'com.google.android.gms:play-services-location:21.0.1'
5656
}
5757

app/src/main/java/mgks/os/swv/MainActivity.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,9 @@ protected void onActivityResult(int requestCode, int resultCode, Intent intent)
244244
}
245245
}
246246
}
247-
asw_file_path.onReceiveValue(results);
247+
if(results!=null) {
248+
asw_file_path.onReceiveValue(results);
249+
}
248250
asw_file_path = null;
249251
}
250252

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ buildscript {
1111
// maven { url 'https://jitpack.io' }
1212
}
1313
dependencies {
14-
classpath 'com.android.tools.build:gradle:7.4.0'
15-
classpath 'com.google.gms:google-services:4.3.14'
14+
classpath 'com.android.tools.build:gradle:7.4.2'
15+
classpath 'com.google.gms:google-services:4.3.15'
1616
// NOTE: Do not place your application dependencies here; they belong
1717
// in the individual module build.gradle files
1818
}

0 commit comments

Comments
 (0)