Skip to content

Commit 769a220

Browse files
committed
fix to support android-12+
1 parent d45f70e commit 769a220

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ allprojects {
5959
}
6060

6161
ext {
62-
compile_sdk_version = 29
63-
build_tools_version = "29.0.3"
62+
compile_sdk_version = 32
63+
build_tools_version = "30.0.2"
6464
min_sdk_version = 14
65-
target_sdk_version = 29
65+
target_sdk_version = 32
6666
java_core_ver = "3.10.0"
6767
android_logger_ver = "1.3.6"
6868
jacksonversion= "2.11.2"
@@ -76,7 +76,7 @@ ext {
7676
gson_ver = "2.8.6"
7777
group_id = "com.optimizely.ab"
7878
androidx_test = "1.1.1"
79-
work_runtime = "2.5.0"
79+
work_runtime = "2.7.1"
8080
}
8181

8282
task clean(type: Delete) {

test-app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040

4141
<activity
4242
android:name=".SplashScreenActivity"
43+
android:exported="true"
4344
android:theme="@style/SplashTheme">
4445
<intent-filter>
4546
<action android:name="android.intent.action.MAIN" />

0 commit comments

Comments
 (0)