Skip to content

Commit 79ae4a6

Browse files
authored
[Infra] Update minSdkVersion reference to 23 in AndroidManifests (#7935)
Updated the commented-out `minSdkVersion` reference from 21 to 23 in `AndroidManifest.xml` files across various Firebase modules. This change reflects the actual minimum API level support. b/493629449 NO_RELEASE_CHANGE
1 parent 62c9022 commit 79ae4a6

45 files changed

Lines changed: 45 additions & 45 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

ai-logic/firebase-ai/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
1717
<!--Although the *SdkVersion is captured in gradle build files, this is required for non gradle builds-->
18-
<!--<uses-sdk android:minSdkVersion="21"/>-->
18+
<!--<uses-sdk android:minSdkVersion="23"/>-->
1919

2020
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
2121
<uses-permission android:name="android.permission.INTERNET" />

appcheck/firebase-appcheck-debug-testing/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
1717
<!--Although the *SdkVersion is captured in gradle build files, this is required for non gradle builds-->
18-
<!--<uses-sdk android:minSdkVersion="21"/>-->
18+
<!--<uses-sdk android:minSdkVersion="23"/>-->
1919
<application>
2020
<service android:name="com.google.firebase.components.ComponentDiscoveryService"
2121
android:exported="false">

appcheck/firebase-appcheck-debug/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
1717
<!--Although the *SdkVersion is captured in gradle build files, this is required for non gradle builds-->
18-
<!--<uses-sdk android:minSdkVersion="21"/>-->
18+
<!--<uses-sdk android:minSdkVersion="23"/>-->
1919
<application>
2020
<service android:name="com.google.firebase.components.ComponentDiscoveryService"
2121
android:exported="false">

appcheck/firebase-appcheck-interop/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515

1616
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
1717
<!--Although the *SdkVersion is captured in gradle build files, this is required for non gradle builds-->
18-
<!--<uses-sdk android:minSdkVersion="21"/>-->
18+
<!--<uses-sdk android:minSdkVersion="23"/>-->
1919
<application />
2020
</manifest>

appcheck/firebase-appcheck-playintegrity/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
1717
<!--Although the *SdkVersion is captured in gradle build files, this is required for non gradle builds-->
18-
<!--<uses-sdk android:minSdkVersion="21"/>-->
18+
<!--<uses-sdk android:minSdkVersion="23"/>-->
1919
<application>
2020
<service android:name="com.google.firebase.components.ComponentDiscoveryService"
2121
android:exported="false">

appcheck/firebase-appcheck/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<!-- limitations under the License. -->
1515
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
1616
<!--Although the *SdkVersion is captured in gradle build files, this is required for non gradle builds-->
17-
<!--<uses-sdk android:minSdkVersion="21"/>-->
17+
<!--<uses-sdk android:minSdkVersion="23"/>-->
1818
<application>
1919
<service android:name="com.google.firebase.components.ComponentDiscoveryService"
2020
android:exported="false"> <meta-data android:name="com.google.firebase.components:com.google.firebase.appcheck.FirebaseAppCheckKtxRegistrar" android:value="com.google.firebase.components.ComponentRegistrar"/>

encoders/firebase-encoders-json/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515

1616
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
1717
<!--Although the *SdkVersion is captured in gradle build files, this is required for non gradle builds-->
18-
<!--<uses-sdk android:minSdkVersion="21"/>-->
18+
<!--<uses-sdk android:minSdkVersion="23"/>-->
1919
</manifest>

encoders/firebase-encoders-reflective/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515

1616
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
1717
<!--Although the *SdkVersion is captured in gradle build files, this is required for non gradle builds-->
18-
<!--<uses-sdk android:minSdkVersion="21"/>-->
18+
<!--<uses-sdk android:minSdkVersion="23"/>-->
1919
</manifest>

firebase-abt/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
33
<!--Although the *SdkVersion is captured in gradle build files, this is required for non gradle builds-->
4-
<!--<uses-sdk android:minSdkVersion="21"/>-->
4+
<!--<uses-sdk android:minSdkVersion="23"/>-->
55
<application>
66
<service android:name="com.google.firebase.components.ComponentDiscoveryService">
77
<meta-data

firebase-common/src/androidTest/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:tools="http://schemas.android.com/tools">
44

5-
<uses-sdk android:minSdkVersion="21" tools:overrideLibrary="com.google.firebase.auth"/>
5+
<uses-sdk android:minSdkVersion="23" tools:overrideLibrary="com.google.firebase.auth"/>
66
<application>
77
<service android:name="com.google.firebase.components.ComponentDiscoveryService"
88
android:exported="false">

0 commit comments

Comments
 (0)