Skip to content

Commit

Permalink
🚨 webauthn: fix android lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
cruzdanilo committed Jun 19, 2024
1 parent 9fd6f71 commit 5187cfb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
7 changes: 6 additions & 1 deletion app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ export default {
[
"expo-build-properties",
{
android: { compileSdkVersion: 34, targetSdkVersion: 34, packagingOptions: { pickFirst: ["**/libcrypto.so"] } },
android: {
minSdkVersion: 28,
targetSdkVersion: 34,
compileSdkVersion: 34,
packagingOptions: { pickFirst: ["**/libcrypto.so"] },
},
ios: { deploymentTarget: "13.4" },
} as BuildPropertiesConfig,
],
Expand Down
2 changes: 1 addition & 1 deletion webauthn/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ android {

namespace "expo.modules.webauthn"
defaultConfig {
minSdkVersion safeExtGet("minSdkVersion", 21)
minSdkVersion safeExtGet("minSdkVersion", 28)
targetSdkVersion safeExtGet("targetSdkVersion", 34)
versionCode 1
versionName "0.1.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import expo.modules.kotlin.functions.Coroutine
import expo.modules.kotlin.modules.Module
import expo.modules.kotlin.modules.ModuleDefinition

@Suppress("unused")
class ExpoWebauthn : Module() {
override fun definition() = ModuleDefinition {
Name("ExpoWebauthn")
Expand Down

0 comments on commit 5187cfb

Please sign in to comment.