mirror of
https://github.com/f-droid/fdroidclient.git
synced 2026-07-30 17:16:24 -04:00
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
11 lines
213 B
Kotlin
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()
|
|
}
|
|
}
|