Skip to content

Commit c290a9d

Browse files
committed
Update targetSdkVersion and compileSdkVersion to 32 for DynamicFeatures and InstantApps
1 parent a72d67a commit c290a9d

13 files changed

Lines changed: 22 additions & 21 deletions

File tree

DynamicCodeLoadingKotlin/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ apply plugin: 'kotlin-android'
44
apply plugin: 'kotlin-kapt'
55

66
android {
7-
compileSdkVersion 28
7+
compileSdkVersion 32
88
defaultConfig {
99
applicationId "com.google.android.samples.dynamiccodeloading"
1010
minSdkVersion 21
11-
targetSdkVersion 28
11+
targetSdkVersion 32
1212
versionCode 33
1313
versionName "1.0.33"
1414
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

DynamicCodeLoadingKotlin/app/src/main/AndroidManifest.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
android:supportsRtl="true"
2626
android:theme="@style/AppTheme"
2727
tools:ignore="AllowBackup,GoogleAppIndexingWarning">
28-
<activity android:name=".MainActivity">
28+
<activity android:name=".MainActivity"
29+
android:exported="true">
2930
<intent-filter>
3031
<action android:name="android.intent.action.MAIN"/>
3132

@@ -34,4 +35,4 @@
3435
</activity>
3536
</application>
3637

37-
</manifest>
38+
</manifest>

DynamicCodeLoadingKotlin/storage/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ apply plugin: 'kotlin-android'
33
apply plugin: 'kotlin-kapt'
44

55
android {
6-
compileSdkVersion 28
6+
compileSdkVersion 32
77

88
defaultConfig {
99
minSdkVersion 21
10-
targetSdkVersion 28
10+
targetSdkVersion 32
1111
versionCode 1
1212
versionName "1.0"
1313
}

InstantApps/aab-simple/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ apply plugin: 'com.android.application'
1818
apply plugin: 'kotlin-android'
1919

2020
android {
21-
compileSdkVersion 28
21+
compileSdkVersion 32
2222
defaultConfig {
2323
applicationId "com.google.android.instantapps.samples.instantenabledandroidappbundle"
2424
minSdkVersion 21
25-
targetSdkVersion 28
25+
targetSdkVersion 32
2626
versionCode 1
2727
versionName "1.0"
2828
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

InstantApps/analytics/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ allprojects {
3535
}
3636

3737
ext {
38-
compileSdk = 28
38+
compileSdk = 32
3939
minSdk = 15
4040
versionCode = 1
4141
versionName = '1.0'

InstantApps/cookie-api/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ allprojects {
3939
}
4040

4141
ext {
42-
compileSdk = 28
42+
compileSdk = 32
4343
minSdk = 15
4444
versionCode = 1
4545
versionName = "1.0"

InstantApps/install-api/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ allprojects {
3939
}
4040

4141
ext {
42-
compileSdk = 28
42+
compileSdk = 32
4343
minSdk = 15
4444
versionCode = 1
4545
versionName = "1.0"

InstantApps/multi-feature-module/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
// Top-level build file where you can add configuration options common to all sub-projects/modules.
1818

1919
ext {
20-
compileSdk = 28
21-
targetSdk = 28
20+
compileSdk = 32
21+
targetSdk = 32
2222
minSdk = 21
2323
versionCode = 1
2424
versionName = "1.0"

InstantApps/service/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ allprojects {
3434
}
3535

3636
ext {
37-
compileSdk = 28
37+
compileSdk = 32
3838
minSdk = 23
3939
versionCode = 1
4040
versionName = '1.0'

InstantApps/storage-api/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ allprojects {
3939
}
4040

4141
ext {
42-
compileSdk = 28
42+
compileSdk = 32
4343
minSdk = 15
4444
versionCode = 1
4545
versionName = "1.0"

0 commit comments

Comments
 (0)