Skip to content

Commit ec420d3

Browse files
eldhosembabuandreaowu
authored andcommitted
Fixing issues related with package visibility changes for Android 11. (#2326)
* Fixing issues related with package visibility changes for Android 11. https://developer.android.com/about/versions/11/privacy/package-visibility
1 parent 82c93e5 commit ec420d3

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

buildSrc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies {
3939
runtime 'io.opencensus:opencensus-impl:0.18.0'
4040
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
4141
implementation 'org.jetbrains.dokka:dokka-android-gradle-plugin:0.9.17-g013-9b8280a'
42-
implementation 'com.android.tools.build:gradle:3.4.2'
42+
implementation 'com.android.tools.build:gradle:3.4.3'
4343

4444
testImplementation 'junit:junit:4.13-rc-1'
4545
testImplementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'

firebase-inappmessaging-display/src/main/AndroidManifest.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33

44
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
55
<uses-permission android:name="android.permission.INTERNET" />
6+
7+
<queries>
8+
<intent>
9+
<action android:name="android.intent.action.VIEW" />
10+
<data android:scheme="https" />
11+
</intent>
12+
</queries>
13+
614
<application>
715
<service android:name="com.google.firebase.components.ComponentDiscoveryService"
816
android:exported="false">

smoke-tests/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ buildscript {
2323
}
2424

2525
dependencies {
26-
classpath "com.android.tools.build:gradle:3.4.2"
26+
classpath "com.android.tools.build:gradle:3.4.3"
2727
classpath "com.google.gms:google-services:4.3.0"
2828
}
2929
}

0 commit comments

Comments
 (0)