Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
8 changes: 1 addition & 7 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ plugins {
alias(libs.plugins.android.application)
alias(libs.plugins.kotlin.android)
alias(libs.plugins.kotlin.compose)
// Add the Google services Gradle plugin
id("com.google.gms.google-services")
}

android {
Expand Down Expand Up @@ -61,12 +59,8 @@ dependencies {
implementation(libs.androidx.material3)
implementation(libs.androidx.activity.compose)
implementation(libs.androidx.lifecycle.runtime.ktx)

testImplementation(libs.junit)
androidTestImplementation(libs.androidx.junit)
androidTestImplementation(libs.androidx.espresso.core)
// Import the Firebase BoM
implementation(platform("com.google.firebase:firebase-bom:34.9.0"))
// implementation("com.google.android.gms:play-services-ads:23.3.0")
implementation("com.google.firebase:firebase-analytics")
}
1 change: 0 additions & 1 deletion app/src/main/java/io/transcend/samplesdk/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import com.google.android.material.bottomsheet.BottomSheetDialog
import io.transcend.webview.TranscendAPI
import io.transcend.webview.TranscendWebView
import io.transcend.webview.models.TranscendConfig
//import com.google.android.gms.ads.MobileAds

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we can get rid of it in the dependency and build files, but we should keep it in the MainActivity, commented out, to show people how to gate an sdk

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cesar-sosa-hol can you address this one please?

import io.transcend.webview.models.ConsentStatus
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
Expand Down
2 changes: 0 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.kotlin.android) apply false
// Add the dependency for the Google services Gradle plugin
id("com.google.gms.google-services") version "4.4.4" apply false
}