I am trying to start google play paywall from unity app and it is giving me an error that “Java.lang.ClassNotFoundException: android.intent.action.VIEW”
using (var activity = m_Activity)
using (var uriClass = new AndroidJavaClass(“android.net.Uri”))
using (var uri = uriClass.CallStatic(“parse”, m_LicensingURL_Received))
using (var paywallIntent = new AndroidJavaObject(“android.intent.action.VIEW”, uri))
using (paywallIntent.Call(“setPackage”, “com.android.vending” /*Play Store */))
{
activity.Call(“startActivity”, paywallIntent);
}
Can you guys help me with this?