Skip to content

Commit 4638353

Browse files
committed
[6.7.4 rc1] Added missing function
that caused build error on android
1 parent f4f5f04 commit 4638353

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

engine/src/java/com/runrev/android/billing/BillingProvider.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,10 @@ public static void v(String tag, String string)
9393
{
9494
if (LOG) android.util.Log.v(tag, string);
9595
}
96+
97+
public static void e(String tag, String string)
98+
{
99+
if (LOG) android.util.Log.e(tag, string);
100+
}
96101
}
97102
}

0 commit comments

Comments
 (0)