Files
fdroidclient/app/src/basic/kotlin/org/fdroid/AppFull.kt
Hans-Christoph Steiner aebcc1edd6 port 1.x swap startup to 2.x
The whole swap setup was designed around having certain tiny background
processes start at app start.  They are designed to be very low impact, run
at lowest priority, and be scheduled via WorkManager.

port was in 0f73f9ca0e
2026-07-10 15:45:24 +02:00

11 lines
213 B
Kotlin

package org.fdroid
import android.content.Context;
/** In the basic flavor, this class is just a placeholder. */
class AppFull {
companion object {
fun onCreate(context: Context) = println()
}
}