コード例 #1
0
        public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
        {
            Console.WriteLine("Scanbot SDK Example: Initializing Scanbot SDK...");
            SBSDK.Initialize(application, LICENSE_KEY, new SBSDKConfiguration {
                EnableLogging = true
            });

            // In this example we always cleanup the demo temp storage directory on app start.
            TempImageStorage.CleanUp();

            return(true);
        }
コード例 #2
0
        public override void OnCreate()
        {
            base.OnCreate();

            Log.Debug(LOG_TAG, "Initializing Scanbot SDK...");
            SBSDK.Initialize(this, LICENSE_KEY, new SBSDKConfiguration {
                EnableLogging = true
            });

            // In this example we always cleanup the demo temp storage directory on app start.
            TempImageStorage.CleanUp();
        }