Skip to content

Commit

Permalink
remote-reader: fixed gradle deprecation warnings
Browse files Browse the repository at this point in the history
raises targetSdk to 34
  • Loading branch information
frankmorgner committed Mar 6, 2025
1 parent ddff09e commit 8e44f78
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions remote-reader/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ android {
applicationId "com.vsmartcard.remotesmartcardreader.app"
// NFC reader mode was added in KitKat (19)
// androidx.appcompat:appcompat-resources:1.7.0 requires 21
minSdkVersion 21
minSdk 21
//noinspection ExpiredTargetSdkVersion
targetSdkVersion 30
targetSdk 34
versionCode 8
versionName "2.4"
archivesBaseName = "remote-reader-$versionName"
base.archivesName = "remote-reader-$versionName"
}

buildTypes {
Expand Down
5 changes: 2 additions & 3 deletions remote-reader/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,8 @@
</activity>
<activity
android:name="com.vsmartcard.remotesmartcardreader.app.SettingsActivity"
android:exported="false"
android:label="@string/title_activity_settings"
tools:ignore="AppLinkUrlError">
android:exported="true"
android:label="@string/title_activity_settings" >

<intent-filter>
<action android:name="android.intent.action.VIEW" />
Expand Down

0 comments on commit 8e44f78

Please sign in to comment.