#abdessalamxseeyoung_code
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1377023055011778570
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
using these versions
"@stripe/stripe-identity-react-native": "^0.3.7",
"@stripe/stripe-react-native": "^0.44.0",
with style fixed as said in documentation:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight.NoActionBar">
<item name="android:editTextBackground">@drawable/rn_edit_text_material</item>
</style>
</resources>
Added this to android/app/build.gradle (because i had some kinda errors about them in logs of app:
//Jetpack Compose dependencies for Stripe Identity compatibility
implementation ("androidx.activity:activity-compose:1.10.1")
implementation ("androidx.compose.ui:ui:1.8.2")
implementation ("androidx.compose.ui:ui-tooling-preview:1.8.2")
implementation ("androidx.compose.material:material:1.8.2")
implementation ("androidx.lifecycle:lifecycle-viewmodel-compose:2.9.0")
implementation ("androidx.navigation:navigation-compose:2.9.0")
implementation ("androidx.compose.runtime:runtime-livedata:1.8.2")
composeOptions {
kotlinCompilerExtensionVersion = "1.5.15"
}
..
Lemme know if there is anything else could help get you on track!