Add empty billing factory to nightly variant.

This commit is contained in:
Alex Hart 2024-08-19 13:17:53 -03:00 committed by mtang-signal
parent 57f36e7b41
commit d3a6d31873

View file

@ -0,0 +1,13 @@
package org.thoughtcrime.securesms.billing
import android.content.Context
/**
* Website builds do not support google play billing.
*/
object GooglePlayBillingFactory {
@JvmStatic
fun create(context: Context): GooglePlayBillingApi {
return GooglePlayBillingApi.Empty
}
}