Back to project page DroidBilling.
The source code is released under:
MIT License
If you think the Android project DroidBilling listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.techery.droid.billings; // w w w . jav a 2s . c o m public class BillingConfig { private final String signatureBase64; public BillingConfig(String signatureBase64) { this.signatureBase64 = signatureBase64; } public String getSignatureBase64() { return signatureBase64; } }