Add empty billing factory to nightly variant.
This commit is contained in:
parent
57f36e7b41
commit
d3a6d31873
1 changed files with 13 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue