Add billing module and include in play implementation.

This commit is contained in:
Alex Hart
2024-08-16 16:29:39 -03:00
committed by mtang-signal
parent 82443af8f7
commit cda029cd93
17 changed files with 375 additions and 3 deletions

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
}
}