Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apply plugin: "com.android.application"
apply plugin: "org.jetbrains.kotlin.android"
apply plugin: "org.jetbrains.kotlin.android" // TODO: Remove with gradle.properties flags android.builtInKotlin and android.newDsl once libs migrated to AGP 9 (before AGP 10)
apply plugin: "com.facebook.react"

/**
Expand Down Expand Up @@ -102,7 +102,7 @@ android {
// see https://reactnative.dev/docs/signed-apk-android.
signingConfig signingConfigs.debug
minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
}
}
}
Expand Down
6 changes: 6 additions & 0 deletions android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,9 @@ hermesEnabled=true
# This allows your app to draw behind system bars for an immersive UI.
# Note: Only works with ReactActivity and should not be used with custom Activity.
edgeToEdgeEnabled=true

# Opt out of built-in kotlin and new DSL behavior that ships with AGP 9.
# Starting from AGP 10.x these opt outs will be removed.
# TODO: Remove both flags with app/build.gradle plugin org.jetbrains.kotlin.android once libs migrated to AGP 9 (before AGP 10)
android.builtInKotlin=false
android.newDsl=false
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-native": "5.0.0",
"eslint-plugin-simple-import-sort": "9.0.0",
"eslint-plugin-simple-import-sort": "13.0.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "3.3.0",
"eslint-plugin-yml": "1.19.1",
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11126,12 +11126,12 @@ __metadata:
languageName: node
linkType: hard

"eslint-plugin-simple-import-sort@npm:9.0.0":
version: 9.0.0
resolution: "eslint-plugin-simple-import-sort@npm:9.0.0"
"eslint-plugin-simple-import-sort@npm:13.0.0":
version: 13.0.0
resolution: "eslint-plugin-simple-import-sort@npm:13.0.0"
peerDependencies:
eslint: ">=5.0.0"
checksum: 10/a154b2512f8faf0a6b7fc86c7a533597b9cd49f9a54338540e0178fb86a742f2de4dc0f7a95e0f012271a615737e74cf0e10918854eb878e71d821f6f3434664
checksum: 10/4ef64b0e13e6c22d929b4d8f4c68dcb001ecc273b0be7ef1318278bafef4942dcb1454f099e506dcf8bcf729311ad3f7c255a688ab06e71265f5dec4111cb71d
languageName: node
linkType: hard

Expand Down Expand Up @@ -17433,7 +17433,7 @@ __metadata:
eslint-plugin-react: "npm:7.37.5"
eslint-plugin-react-hooks: "npm:7.0.1"
eslint-plugin-react-native: "npm:5.0.0"
eslint-plugin-simple-import-sort: "npm:9.0.0"
eslint-plugin-simple-import-sort: "npm:13.0.0"
eslint-plugin-sort-keys-fix: "npm:1.1.2"
eslint-plugin-typescript-sort-keys: "npm:3.3.0"
eslint-plugin-yml: "npm:1.19.1"
Expand Down
Loading