Skip to content

Commit

Permalink
fix: set manifestPlaceholders
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinFrick committed Jan 17, 2024
1 parent 4a2633e commit c2e2148
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,17 @@ android {
compileSdk = 34

defaultConfig {
applicationId = "io.fusionauth.sdk-test"
applicationId = "io.fusionauth.sdktest"
minSdk = 23
targetSdk = 34
versionCode = 1
versionName = "1.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

// Make sure this is consistent with the redirect URI used in res/raw/auth_config.json,
// or specify additional redirect URIs in AndroidManifest.xml
manifestPlaceholders["appAuthRedirectScheme"] = "io.fusionauth.sdktest-demo"
}

buildTypes {
Expand All @@ -33,6 +37,9 @@ android {
kotlinOptions {
jvmTarget = "1.8"
}
buildFeatures {
viewBinding = true
}
}

dependencies {
Expand All @@ -41,6 +48,11 @@ dependencies {
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("com.google.android.material:material:1.10.0")
implementation(project(":MobileSDK"))
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
implementation("androidx.navigation:navigation-fragment-ktx:2.7.5")
implementation("androidx.navigation:navigation-ui-ktx:2.7.5")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
Expand Down

0 comments on commit c2e2148

Please sign in to comment.