Remove Plausible
This commit is contained in:
parent
ccc4299d10
commit
37f0b8bae8
5 changed files with 0 additions and 26 deletions
|
@ -128,7 +128,6 @@ dependencies {
|
|||
androidTestImplementation("androidx.test.ext:junit:1.1.5")
|
||||
androidTestImplementation("androidx.test.uiautomator:uiautomator:2.2.0")
|
||||
implementation("androidx.core:core-splashscreen:1.0.1")
|
||||
implementation("com.wbrawner.plausible:plausible-android:0.1.0-SNAPSHOT")
|
||||
implementation("androidx.appcompat:appcompat:1.6.1")
|
||||
implementation("androidx.preference:preference-ktx:1.2.1")
|
||||
implementation("androidx.fragment:fragment-ktx:1.6.1")
|
||||
|
|
|
@ -33,7 +33,6 @@ import androidx.core.view.WindowCompat
|
|||
import androidx.navigation.compose.NavHost
|
||||
import androidx.navigation.compose.composable
|
||||
import androidx.navigation.compose.rememberNavController
|
||||
import com.wbrawner.plausible.android.Plausible
|
||||
import com.wbrawner.simplemarkdown.MarkdownApplication.Companion.fileHelper
|
||||
import com.wbrawner.simplemarkdown.MarkdownApplication.Companion.preferenceHelper
|
||||
import com.wbrawner.simplemarkdown.ui.MainScreen
|
||||
|
@ -56,15 +55,6 @@ class MainActivity : AppCompatActivity(), ActivityCompat.OnRequestPermissionsRes
|
|||
installSplashScreen()
|
||||
super.onCreate(savedInstanceState)
|
||||
WindowCompat.setDecorFitsSystemWindows(window, false)
|
||||
val preferences = mutableMapOf<String, String>()
|
||||
preferences["Autosave"] = preferenceHelper[Preference.AUTOSAVE_ENABLED].toString()
|
||||
val usingCustomCss = !(preferenceHelper[Preference.CUSTOM_CSS] as String?).isNullOrBlank()
|
||||
preferences["Custom CSS"] = usingCustomCss.toString()
|
||||
val darkModeSetting = preferenceHelper[Preference.DARK_MODE].toString()
|
||||
preferences["Dark Mode"] = darkModeSetting
|
||||
preferences["Error Reports"] = preferenceHelper[Preference.ERROR_REPORTS_ENABLED].toString()
|
||||
preferences["Readability"] = preferenceHelper[Preference.READABILITY_ENABLED].toString()
|
||||
Plausible.event("settings", props = preferences, url = "/")
|
||||
setContent {
|
||||
val autosaveEnabled by preferenceHelper.observe<Boolean>(Preference.AUTOSAVE_ENABLED)
|
||||
.collectAsState()
|
||||
|
|
|
@ -2,7 +2,6 @@ package com.wbrawner.simplemarkdown
|
|||
|
||||
import android.app.Application
|
||||
import android.os.StrictMode
|
||||
import com.wbrawner.plausible.android.Plausible
|
||||
import com.wbrawner.simplemarkdown.utility.AndroidFileHelper
|
||||
import com.wbrawner.simplemarkdown.utility.AndroidPreferenceHelper
|
||||
import com.wbrawner.simplemarkdown.utility.FileHelper
|
||||
|
@ -37,14 +36,6 @@ class MarkdownApplication : Application() {
|
|||
}
|
||||
super.onCreate()
|
||||
ReviewHelper.init(this)
|
||||
Plausible.enable(!BuildConfig.DEBUG)
|
||||
Plausible.event(
|
||||
"build",
|
||||
url = "/",
|
||||
props = mapOf(
|
||||
"Flavor" to BuildConfig.FLAVOR,
|
||||
"App Version" to BuildConfig.VERSION_NAME
|
||||
))
|
||||
fileHelper = AndroidFileHelper(this)
|
||||
preferenceHelper = AndroidPreferenceHelper(this)
|
||||
}
|
||||
|
|
|
@ -86,7 +86,4 @@
|
|||
<item>@string/pref_key_dark_mode_dark</item>
|
||||
<item>@string/pref_key_dark_mode_auto</item>
|
||||
</string-array>
|
||||
<string name="plausible_enable_startup">false</string>
|
||||
<string name="plausible_host">https://plausible.wbrawner.com</string>
|
||||
<string name="plausible_domain">simplemarkdown.android.wbrawner.com</string>
|
||||
</resources>
|
||||
|
|
|
@ -17,8 +17,5 @@ allprojects {
|
|||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
maven {
|
||||
url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue