Skip to content

Commit

Permalink
chore(targetsdk): AND-0000 Bump target and compile sdks (#4118)
Browse files Browse the repository at this point in the history
* SDK

* SDK
  • Loading branch information
antonis-bc committed Nov 17, 2022
1 parent 73f7db3 commit 9a392a2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
12 changes: 7 additions & 5 deletions app/src/main/AndroidManifest.xml
Expand Up @@ -43,9 +43,9 @@
<activity
android:name=".ui.launcher.LauncherActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:exported="true"
android:launchMode="singleTask"
android:theme="@style/AppTheme.Splash"
android:exported="true">
android:theme="@style/AppTheme.Splash">

<meta-data
android:name="android.app.shortcuts"
Expand Down Expand Up @@ -75,7 +75,7 @@
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
<intent-filter android:autoVerify="true" >
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
Expand All @@ -93,6 +93,7 @@
<activity
android:name=".ui.linkbank.yodlee.YodleeEntryActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:exported="true"
android:theme="@style/AppTheme.Splash">
<intent-filter
android:autoVerify="true"
Expand Down Expand Up @@ -128,8 +129,7 @@
android:windowSoftInputMode="adjustPan" />
<activity
android:name="com.blockchain.chrome.MultiAppActivity"
android:configChanges="keyboardHidden|orientation|screenSize" >
</activity>
android:configChanges="keyboardHidden|orientation|screenSize"></activity>
<activity
android:name=".ui.scan.QrScanActivity"
android:configChanges="keyboardHidden|orientation|screenSize" />
Expand All @@ -145,6 +145,7 @@
<activity
android:name=".ui.login.LoginActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:exported="true"
android:launchMode="singleTask"
android:windowSoftInputMode="adjustResize">
<intent-filter android:autoVerify="true">
Expand Down Expand Up @@ -319,6 +320,7 @@
<service
android:name=".data.notifications.FcmCallbackService"
android:enabled="true"
android:exported="true"
tools:ignore="ExportedService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT" />
Expand Down
5 changes: 3 additions & 2 deletions buildSrc/src/main/java/Dependencies.kt
Expand Up @@ -4,8 +4,9 @@ object Versions {

// Release info
const val minSdk = 24
const val targetSdk = 30
const val compileSdk = 32

const val targetSdk = 33
const val compileSdk = 33

const val versionCode = 24342
const val versionName = "202212.1.0"
Expand Down

0 comments on commit 9a392a2

Please sign in to comment.