Skip to content

Commit f1bc940

Browse files
committed
Update target/compile sdk version to 33
1 parent b08f313 commit f1bc940

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

cardstackview/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 28
4+
compileSdkVersion 33
55

66
defaultConfig {
77
minSdkVersion 14
8-
targetSdkVersion 28
8+
targetSdkVersion 33
99
}
1010
}
1111

sample/build.gradle

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

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

88
defaultConfig {
99
applicationId "com.yuyakaido.android.cardstackview.sample"
1010
minSdkVersion 14
11-
targetSdkVersion 28
11+
targetSdkVersion 33
1212
}
1313
}
1414

sample/src/main/AndroidManifest.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
android:roundIcon="@mipmap/ic_launcher_round"
1414
android:theme="@style/Theme.AppCompat.Light.NoActionBar">
1515

16-
<activity android:name=".MainActivity">
16+
<activity
17+
android:name=".MainActivity"
18+
android:exported="true">
1719
<intent-filter>
1820
<action android:name="android.intent.action.MAIN"/>
1921
<category android:name="android.intent.category.LAUNCHER"/>

0 commit comments

Comments
 (0)