Skip to content

Commit de498a6

Browse files
authored
Update Android SDK versions for I/O release. (#1569)
* Update SDK versions for I/O release. * Add exported=false to default manifests. * Change exported to true where needed.
1 parent 4887fd4 commit de498a6

File tree

76 files changed

+141
-125
lines changed

Some content is hidden

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

76 files changed

+141
-125
lines changed

analytics/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ allprojects {
3131
apply plugin: 'com.android.library'
3232

3333
android {
34-
compileSdkVersion 33
34+
compileSdkVersion 34
3535
ndkPath System.getenv('ANDROID_NDK_HOME')
3636
buildToolsVersion '30.0.2'
3737

@@ -48,8 +48,8 @@ android {
4848
}
4949

5050
defaultConfig {
51-
minSdkVersion 19
52-
targetSdkVersion 28
51+
minSdkVersion 21
52+
targetSdkVersion 34
5353
versionCode 1
5454
versionName "1.0"
5555

analytics/integration_test/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<uses-permission android:name="android.permission.WAKE_LOCK" />
2525
<application android:label="@string/app_name">
2626
<activity android:name="android.app.NativeActivity"
27+
android:exported="true"
2728
android:screenOrientation="portrait"
2829
android:configChanges="orientation|screenSize">
2930
<meta-data android:name="android.app.lib_name"

analytics/integration_test/LibraryManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
1919
package="com.google.android.analytics.testapp.lib" >
2020

21-
<uses-sdk android:minSdkVersion='16'/>
21+
<uses-sdk android:minSdkVersion='21'/>
2222
<application />
2323
</manifest>

analytics/integration_test/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ android {
4040
sourceCompatibility 1.8
4141
targetCompatibility 1.8
4242
}
43-
compileSdkVersion 33
43+
compileSdkVersion 34
4444
ndkPath System.getenv('ANDROID_NDK_HOME')
4545
buildToolsVersion '30.0.2'
4646

@@ -55,8 +55,8 @@ android {
5555

5656
defaultConfig {
5757
applicationId 'com.google.android.analytics.testapp'
58-
minSdkVersion 19
59-
targetSdkVersion 28
58+
minSdkVersion 21
59+
targetSdkVersion 34
6060
versionCode 1
6161
versionName '1.0'
6262
externalNativeBuild.cmake {

app/app_resources/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ android {
3636
sourceCompatibility 1.8
3737
targetCompatibility 1.8
3838
}
39-
compileSdkVersion 33
39+
compileSdkVersion 34
4040

4141
sourceSets {
4242
main {

app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ allprojects {
3131
apply plugin: 'com.android.library'
3232

3333
android {
34-
compileSdkVersion 33
34+
compileSdkVersion 34
3535
ndkPath System.getenv('ANDROID_NDK_HOME')
3636
buildToolsVersion '30.0.2'
3737

@@ -48,8 +48,8 @@ android {
4848
}
4949

5050
defaultConfig {
51-
minSdkVersion 19
52-
targetSdkVersion 28
51+
minSdkVersion 21
52+
targetSdkVersion 34
5353
versionCode 1
5454
versionName "1.0"
5555

app/google_api_resources/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ android {
3636
sourceCompatibility 1.8
3737
targetCompatibility 1.8
3838
}
39-
compileSdkVersion 33
39+
compileSdkVersion 34
4040

4141
sourceSets {
4242
main {

app/integration_test/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<uses-permission android:name="android.permission.WAKE_LOCK" />
2525
<application android:label="@string/app_name">
2626
<activity android:name="android.app.NativeActivity"
27+
android:exported="true"
2728
android:screenOrientation="portrait"
2829
android:configChanges="orientation|screenSize">
2930
<meta-data android:name="android.app.lib_name"

app/integration_test/LibraryManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
1919
package="com.google.android.analytics.testapp.lib" >
2020

21-
<uses-sdk android:minSdkVersion='14'/>
21+
<uses-sdk android:minSdkVersion='21'/>
2222
<application />
2323
</manifest>

app/integration_test/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ android {
4040
sourceCompatibility 1.8
4141
targetCompatibility 1.8
4242
}
43-
compileSdkVersion 33
43+
compileSdkVersion 34
4444
ndkPath System.getenv('ANDROID_NDK_HOME')
4545
buildToolsVersion '30.0.2'
4646

@@ -55,8 +55,8 @@ android {
5555

5656
defaultConfig {
5757
applicationId 'com.google.android.analytics.testapp'
58-
minSdkVersion 19
59-
targetSdkVersion 28
58+
minSdkVersion 21
59+
targetSdkVersion 34
6060
versionCode 1
6161
versionName '1.0'
6262
externalNativeBuild.cmake {

app/invites_resources/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ android {
3636
sourceCompatibility 1.8
3737
targetCompatibility 1.8
3838
}
39-
compileSdkVersion 33
39+
compileSdkVersion 34
4040

4141
sourceSets {
4242
main {

app/test_resources/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ allprojects {
3232
apply plugin: 'com.android.library'
3333

3434
android {
35-
compileSdkVersion 33
35+
compileSdkVersion 34
3636

3737
sourceSets {
3838
main {

app_check/app_check_resources/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ android {
3636
sourceCompatibility 1.8
3737
targetCompatibility 1.8
3838
}
39-
compileSdkVersion 33
39+
compileSdkVersion 34
4040

4141
sourceSets {
4242
main {

app_check/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ allprojects {
3131
apply plugin: 'com.android.library'
3232

3333
android {
34-
compileSdkVersion 33
34+
compileSdkVersion 34
3535
ndkPath System.getenv('ANDROID_NDK_HOME')
3636
buildToolsVersion '30.0.2'
3737

@@ -48,8 +48,8 @@ android {
4848
}
4949

5050
defaultConfig {
51-
minSdkVersion 19
52-
targetSdkVersion 28
51+
minSdkVersion 21
52+
targetSdkVersion 34
5353
versionCode 1
5454
versionName "1.0"
5555

app_check/integration_test/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<uses-permission android:name="android.permission.WAKE_LOCK" />
2525
<application android:label="@string/app_name">
2626
<activity android:name="android.app.NativeActivity"
27+
android:exported="true"
2728
android:screenOrientation="portrait"
2829
android:configChanges="orientation|screenSize">
2930
<meta-data android:name="android.app.lib_name"

app_check/integration_test/LibraryManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
1919
package="com.google.firebase.cpp.appcheck.testapp.lib" >
2020

21-
<uses-sdk android:minSdkVersion='14'/>
21+
<uses-sdk android:minSdkVersion='21'/>
2222
<application />
2323
</manifest>

app_check/integration_test/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ android {
4040
sourceCompatibility 1.8
4141
targetCompatibility 1.8
4242
}
43-
compileSdkVersion 33
43+
compileSdkVersion 34
4444
ndkPath System.getenv('ANDROID_NDK_HOME')
4545
buildToolsVersion '30.0.2'
4646

@@ -55,8 +55,8 @@ android {
5555

5656
defaultConfig {
5757
applicationId 'com.google.firebase.cpp.appcheck.testapp'
58-
minSdkVersion 19
59-
targetSdkVersion 28
58+
minSdkVersion 21
59+
targetSdkVersion 34
6060
versionCode 1
6161
versionName '1.0'
6262
externalNativeBuild.cmake {

auth/auth_resources/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ android {
3636
sourceCompatibility 1.8
3737
targetCompatibility 1.8
3838
}
39-
compileSdkVersion 33
39+
compileSdkVersion 34
4040

4141
sourceSets {
4242
main {

auth/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ allprojects {
3131
apply plugin: 'com.android.library'
3232

3333
android {
34-
compileSdkVersion 33
34+
compileSdkVersion 34
3535
ndkPath System.getenv('ANDROID_NDK_HOME')
3636
buildToolsVersion '30.0.2'
3737

@@ -48,8 +48,8 @@ android {
4848
}
4949

5050
defaultConfig {
51-
minSdkVersion 19
52-
targetSdkVersion 28
51+
minSdkVersion 21
52+
targetSdkVersion 34
5353
versionCode 1
5454
versionName "1.0"
5555

auth/integration_test/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<uses-permission android:name="android.permission.WAKE_LOCK" />
2525
<application android:label="@string/app_name">
2626
<activity android:name="android.app.NativeActivity"
27+
android:exported="true"
2728
android:screenOrientation="portrait"
2829
android:configChanges="orientation|screenSize">
2930
<meta-data android:name="android.app.lib_name"

auth/integration_test/LibraryManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
1919
package="com.google.android.auth.testapp.lib" >
2020

21-
<uses-sdk android:minSdkVersion='16'/>
21+
<uses-sdk android:minSdkVersion='21'/>
2222
<application />
2323
</manifest>

auth/integration_test/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ android {
4040
sourceCompatibility 1.8
4141
targetCompatibility 1.8
4242
}
43-
compileSdkVersion 33
43+
compileSdkVersion 34
4444
ndkPath System.getenv('ANDROID_NDK_HOME')
4545
buildToolsVersion '30.0.2'
4646

@@ -55,8 +55,8 @@ android {
5555

5656
defaultConfig {
5757
applicationId 'com.google.android.auth.testapp'
58-
minSdkVersion 19
59-
targetSdkVersion 28
58+
minSdkVersion 21
59+
targetSdkVersion 34
6060
versionCode 1
6161
versionName '1.0'
6262
externalNativeBuild.cmake {

database/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ allprojects {
3131
apply plugin: 'com.android.library'
3232

3333
android {
34-
compileSdkVersion 33
34+
compileSdkVersion 34
3535
ndkPath System.getenv('ANDROID_NDK_HOME')
3636
buildToolsVersion '30.0.2'
3737

@@ -48,8 +48,8 @@ android {
4848
}
4949

5050
defaultConfig {
51-
minSdkVersion 19
52-
targetSdkVersion 28
51+
minSdkVersion 21
52+
targetSdkVersion 34
5353
versionCode 1
5454
versionName "1.0"
5555

database/database_resources/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ allprojects {
3232
apply plugin: 'com.android.library'
3333

3434
android {
35-
compileSdkVersion 33
35+
compileSdkVersion 34
3636

3737
sourceSets {
3838
main {

database/integration_test/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<uses-permission android:name="android.permission.WAKE_LOCK" />
2525
<application android:label="@string/app_name">
2626
<activity android:name="android.app.NativeActivity"
27+
android:exported="true"
2728
android:screenOrientation="portrait"
2829
android:configChanges="orientation|screenSize">
2930
<meta-data android:name="android.app.lib_name"

database/integration_test/LibraryManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
1919
package="com.google.firebase.cpp.database.testapp.lib" >
2020

21-
<uses-sdk android:minSdkVersion='14'/>
21+
<uses-sdk android:minSdkVersion='21'/>
2222
<application />
2323
</manifest>

database/integration_test/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ android {
4040
sourceCompatibility 1.8
4141
targetCompatibility 1.8
4242
}
43-
compileSdkVersion 33
43+
compileSdkVersion 34
4444
ndkPath System.getenv('ANDROID_NDK_HOME')
4545
buildToolsVersion '30.0.2'
4646

@@ -55,8 +55,8 @@ android {
5555

5656
defaultConfig {
5757
applicationId 'com.google.firebase.cpp.database.testapp'
58-
minSdkVersion 19
59-
targetSdkVersion 28
58+
minSdkVersion 21
59+
targetSdkVersion 34
6060
versionCode 1
6161
versionName '1.0'
6262
externalNativeBuild.cmake {

dynamic_links/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ allprojects {
3131
apply plugin: 'com.android.library'
3232

3333
android {
34-
compileSdkVersion 33
34+
compileSdkVersion 34
3535
ndkPath System.getenv('ANDROID_NDK_HOME')
3636
buildToolsVersion '30.0.2'
3737

@@ -48,8 +48,8 @@ android {
4848
}
4949

5050
defaultConfig {
51-
minSdkVersion 19
52-
targetSdkVersion 28
51+
minSdkVersion 21
52+
targetSdkVersion 34
5353
versionCode 1
5454
versionName "1.0"
5555

dynamic_links/integration_test/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<uses-permission android:name="android.permission.WAKE_LOCK" />
2525
<application android:label="@string/app_name">
2626
<activity android:name="android.app.NativeActivity"
27+
android:exported="true"
2728
android:screenOrientation="portrait"
2829
android:configChanges="orientation|screenSize">
2930
<meta-data android:name="android.app.lib_name"

dynamic_links/integration_test/LibraryManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
1919
package="com.google.android.dynamiclinks.testapp.lib" >
2020

21-
<uses-sdk android:minSdkVersion='14'/>
21+
<uses-sdk android:minSdkVersion='21'/>
2222
<application />
2323
</manifest>

dynamic_links/integration_test/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ android {
4040
sourceCompatibility 1.8
4141
targetCompatibility 1.8
4242
}
43-
compileSdkVersion 33
43+
compileSdkVersion 34
4444
ndkPath System.getenv('ANDROID_NDK_HOME')
4545
buildToolsVersion '30.0.2'
4646

@@ -55,8 +55,8 @@ android {
5555

5656
defaultConfig {
5757
applicationId 'com.google.android.dynamiclinks.testapp'
58-
minSdkVersion 19
59-
targetSdkVersion 28
58+
minSdkVersion 21
59+
targetSdkVersion 34
6060
versionCode 1
6161
versionName '1.0'
6262
externalNativeBuild.cmake {

0 commit comments

Comments
 (0)