Skip to content

Commit

Permalink
chore: Sample app with compileSdk=34
Browse files Browse the repository at this point in the history
  • Loading branch information
maureenorea-clores committed Dec 8, 2023
1 parent c13187b commit d18b647
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply plugin: "kotlin-android"
apply plugin: 'kotlin-kapt'

android {
compileSdkVersion 33
compileSdkVersion 34

defaultConfig {
applicationId "rakuten.com.tech.mobile.test"
Expand All @@ -14,7 +14,7 @@ android {
// Defines the minimum API level required to run the app.
minSdkVersion CONFIG.versions.android.sdk.min
// Specifies the API level used to test the app.
targetSdkVersion 33
targetSdkVersion 34

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down
7 changes: 3 additions & 4 deletions test/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,15 @@

<activity
android:name=".SecondActivity"
android:exported="false"
android:exported="true"
tools:ignore="AppLinkUrlError">
<intent-filter android:label="second_activity">
<category android:name="android.intent.category.BROWSABLE"/>
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.VIEW"/>
<data
android:host="www.rakuten.com"
android:pathPrefix="/inapp"
android:scheme="https"/>
android:scheme="sampleapp"
android:host="second.activity" />
</intent-filter>
</activity>
</application>
Expand Down

0 comments on commit d18b647

Please sign in to comment.