Skip to content

Commit

Permalink
Update targetSdkVersion and compileSdkVersion to 32 for DynamicFeatur…
Browse files Browse the repository at this point in the history
…es and InstantApps
  • Loading branch information
katebo-g committed Oct 6, 2023
1 parent a72d67a commit c290a9d
Show file tree
Hide file tree
Showing 13 changed files with 22 additions and 21 deletions.
4 changes: 2 additions & 2 deletions DynamicCodeLoadingKotlin/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'

android {
compileSdkVersion 28
compileSdkVersion 32
defaultConfig {
applicationId "com.google.android.samples.dynamiccodeloading"
minSdkVersion 21
targetSdkVersion 28
targetSdkVersion 32
versionCode 33
versionName "1.0.33"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
5 changes: 3 additions & 2 deletions DynamicCodeLoadingKotlin/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:ignore="AllowBackup,GoogleAppIndexingWarning">
<activity android:name=".MainActivity">
<activity android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

Expand All @@ -34,4 +35,4 @@
</activity>
</application>

</manifest>
</manifest>
4 changes: 2 additions & 2 deletions DynamicCodeLoadingKotlin/storage/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'

android {
compileSdkVersion 28
compileSdkVersion 32

defaultConfig {
minSdkVersion 21
targetSdkVersion 28
targetSdkVersion 32
versionCode 1
versionName "1.0"
}
Expand Down
4 changes: 2 additions & 2 deletions InstantApps/aab-simple/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 28
compileSdkVersion 32
defaultConfig {
applicationId "com.google.android.instantapps.samples.instantenabledandroidappbundle"
minSdkVersion 21
targetSdkVersion 28
targetSdkVersion 32
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
2 changes: 1 addition & 1 deletion InstantApps/analytics/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ allprojects {
}

ext {
compileSdk = 28
compileSdk = 32
minSdk = 15
versionCode = 1
versionName = '1.0'
Expand Down
2 changes: 1 addition & 1 deletion InstantApps/cookie-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ allprojects {
}

ext {
compileSdk = 28
compileSdk = 32
minSdk = 15
versionCode = 1
versionName = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion InstantApps/install-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ allprojects {
}

ext {
compileSdk = 28
compileSdk = 32
minSdk = 15
versionCode = 1
versionName = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions InstantApps/multi-feature-module/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

ext {
compileSdk = 28
targetSdk = 28
compileSdk = 32
targetSdk = 32
minSdk = 21
versionCode = 1
versionName = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion InstantApps/service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ allprojects {
}

ext {
compileSdk = 28
compileSdk = 32
minSdk = 23
versionCode = 1
versionName = '1.0'
Expand Down
2 changes: 1 addition & 1 deletion InstantApps/storage-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ allprojects {
}

ext {
compileSdk = 28
compileSdk = 32
minSdk = 15
versionCode = 1
versionName = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions InstantApps/urlless/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 28
compileSdkVersion 32

defaultConfig {
applicationId "com.google.android.instantapps.samples.urlless.app"
minSdkVersion 21
targetSdkVersion 28
targetSdkVersion 32
versionCode 1
versionName "1"

Expand Down
4 changes: 2 additions & 2 deletions InstantApps/urlless/feature/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
apply plugin: 'com.android.dynamic-feature'

android {
compileSdkVersion 27
compileSdkVersion 32

defaultConfig {
minSdkVersion 21
targetSdkVersion 27
targetSdkVersion 32
versionCode 1
versionName "1"
}
Expand Down
4 changes: 2 additions & 2 deletions InstantApps/urlless/greet/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
apply plugin: 'com.android.dynamic-feature'

android {
compileSdkVersion 27
compileSdkVersion 30

defaultConfig {
minSdkVersion 21
targetSdkVersion 27
targetSdkVersion 30
versionCode 3
versionName "1"
}
Expand Down

0 comments on commit c290a9d

Please sign in to comment.