Commiting the Launcher stub

This commit is contained in:
Joe Bowser 2009-07-17 14:06:49 -07:00
parent 516b8ed918
commit 32cc9492a6

View File

@ -0,0 +1,19 @@
package com.phonegap.demo;
import android.content.Context;
import android.webkit.WebView;
public class CameraLauncher {
private WebView mAppView;
private Context mCtx;
CameraLauncher(WebView view, Context ctx)
{
mAppView = view;
mCtx = ctx;
}
}