Top Quality Products

[TS] DocScan – A mini and Powerful mobile scanner for iOS (Admob, IAP, Push Notifications)

$49.00

Added to wishlistRemoved from wishlist 0
Add to compare

13 sales

[TS] DocScan – A mini and Powerful mobile scanner for iOS (Admob, IAP, Push Notifications)

DocScan – A Mini and Powerful Mobile Scanner for iOS

Rating: 0/5

Introduction:

In today’s digital age, scanning documents has become an essential task for both personal and professional use. With the rise of mobile devices, it’s no surprise that mobile scanners have become increasingly popular. DocScan is one such app that promises to turn your iPhone or iPad into a powerful mobile scanner. But does it live up to its claims? Let’s dive in and find out.

Features:

DocScan is a feature-rich app that offers a range of functionalities to make scanning documents a breeze. Some of its key features include:

  • Automatic or manual image capturing modes
  • Enhanced image processing with edge detection, optimization, and color corrections
  • Flash settings
  • Ability to turn on a grid
  • Fastest recognition using Tesseract API
  • Support for 101 OCR languages
  • Cloud integrations with iCloud, Dropbox, Evernote, Yandex Disk, Box, OneDrive, and Google Drive
  • Ability to create and save documents in colored, grayscale, black and white formats
  • High performance and stability

Pros:

  • DocScan is incredibly fast and efficient, making it perfect for scanning documents quickly
  • The app offers a range of features that make it easy to edit and enhance scanned images
  • The cloud integrations are a major plus, allowing users to share and access their scanned documents easily

Cons:

  • The app is only compatible with iOS 13, 14, and 15 devices, which may be a limitation for some users
  • The user interface could be improved, as it can be a bit cluttered and overwhelming at times
  • The app’s performance can be slow at times, especially when dealing with large files

Conclusion:

DocScan is a powerful mobile scanner that offers a range of features to make scanning documents easy and efficient. While it has its limitations, it’s a great option for those who need a reliable and fast scanning app. However, the app’s compatibility issues and user interface could be improved. Overall, I would give DocScan a score of 0 out of 5.

Additional Information:

  • DocScan supports iOS 13, 14, 15+ platforms only
  • Get the Android version from here: [link]
  • Available on Google Play: [link]
  • Support: [link]
  • Changelog: [link]
  • Documentation: [link]
  • Get Support: [link]

User Reviews

0.0 out of 5
0
0
0
0
0
Write a review

There are no reviews yet.

Be the first to review “[TS] DocScan – A mini and Powerful mobile scanner for iOS (Admob, IAP, Push Notifications)”

Your email address will not be published. Required fields are marked *

Introduction

As the world becomes increasingly digital, the need for mobile document scanning apps has grown. With the rise of mobile devices, it's no longer necessary to rely on traditional scanners or cameras to capture and digitize important documents. DocScan, a powerful and feature-rich mobile scanner app, offers a convenient and efficient solution for scanning documents, receipts, and other papers on-the-go.

In this tutorial, we will take you through the complete process of using DocScan, a mini and powerful mobile scanner for iOS, covering its key features, Admob integration, In-app Purchase (IAP) setup, and Push Notifications configuration.

Table of Contents

  1. Introduction
  2. Installing and Setting up DocScan
  3. Admob Integration
  4. In-app Purchase (IAP) Setup
  5. Push Notifications Configuration
  6. Using DocScan
  7. Conclusion

Section 2: Installing and Setting up DocScan

To get started with DocScan, follow these steps:

  1. Open the App Store on your iOS device and search for "DocScan".
  2. Download and install the app.
  3. Once installed, open the app and agree to the terms and conditions.
  4. Tap on the "Scan" button to start the scanning process.

Section 3: Admob Integration

To integrate Admob into your DocScan app, follow these steps:

  1. Create an Admob account and create a new ad unit for your app.
  2. Open the DocScan project in Xcode and add the Admob SDK by importing the Admob framework.
  3. Initialize the Admob SDK in the application(_:didFinishLaunchingWithOptions:) method:
    
    import GoogleMobileAds

class AppDelegate: UIResponder, UIApplicationDelegate { func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // Initialize Admob GADMobileAds.sharedInstance().start() return true } }

4. Add an Admob banner view to your app's main screen:
```swift
import UIKit
import GoogleMobileAds

class ViewController: UIViewController, GADBannerViewDelegate {
    var bannerView: GADBannerView!

    override func viewDidLoad() {
        super.viewDidLoad()
        // Create and add an Admob banner view
        bannerView = GADBannerView(adSize: kGADAdSizeBanner)
        bannerView.rootViewController = self
        bannerView.delegate = self
        view.addSubview(bannerView)
        // Load the ad
        bannerView.load(GADRequest())
    }
}
  1. Set up Admob ads in the didReceiveMessage method:
    func didReceiveMessage(_ request: GADRequest) {
    // Load the ad
    bannerView.load(request)
    }

    Section 4: In-app Purchase (IAP) Setup

To set up In-app Purchase (IAP) in your DocScan app, follow these steps:

  1. Create an In-app Purchase (IAP) product in the App Store Connect portal.
  2. Open the DocScan project in Xcode and add the StoreKit framework.
  3. Import the StoreKit framework:
    import StoreKit
  4. Create an SKPaymentQueue instance and add a payment observer:
    let paymentQueue = SKPaymentQueue.default()
    paymentQueue.add(self)
  5. Implement the paymentQueue(_:updatedTransactions:) method:
    func paymentQueue(_ queue: SKPaymentQueue, updatedTransactions transactions: [SKPaymentTransaction]) {
    for transaction in transactions {
        switch transaction.transactionState {
        case.purchased:
            // Purchase successful, unlock the feature
            unlockFeature()
        case.failed:
            // Purchase failed, show an error message
            showError(message: "Failed to purchase")
        default:
            break
        }
    }
    }

    Section 5: Push Notifications Configuration

To set up Push Notifications in your DocScan app, follow these steps:

  1. Create a Push Notification certificate in the App Store Connect portal.
  2. Open the DocScan project in Xcode and add the Push Notifications framework.
  3. Import the Push Notifications framework:
    import UserNotifications
  4. Register for Push Notifications in the application(_:didFinishLaunchingWithOptions:) method:
    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
    // Register for Push Notifications
    UNUserNotificationCenter.current().requestAuthorization(options: [.alert,.sound,.badge]) { granted, error in
        if granted {
            print("Push Notifications enabled")
        } else {
            print("Push Notifications disabled")
        }
    }
    return true
    }
  5. Handle Push Notifications in the userNotificationCenter(_:didReceive:withCompletionHandler:) method:
    func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
    // Handle the Push Notification
    print("Push Notification received")
    completionHandler()
    }

    Section 6: Using DocScan

Now that you have set up Admob, In-app Purchase (IAP), and Push Notifications in your DocScan app, you can start using the app to scan documents and receipts. Here's a step-by-step guide:

  1. Open the DocScan app and tap on the "Scan" button.
  2. Adjust the camera settings as needed.
  3. Tap on the "Scan" button to capture the document or receipt.
  4. The app will automatically detect the edges of the document and apply filters to enhance the scan quality.
  5. You can then save the scanned document or receipt to your device or share it with others.

Conclusion

In this tutorial, we have covered the complete process of using DocScan, a mini and powerful mobile scanner for iOS, covering its key features, Admob integration, In-app Purchase (IAP) setup, and Push Notifications configuration. By following these steps, you can create a fully functional mobile scanner app with Admob, IAP, and Push Notifications.

Here is an example of complete settings for [TS] DocScan - A mini and Powerful mobile scanner for iOS (Admob, IAP, Push Notifications):

Admob Configuration

To configure Admob, follow these steps:

  • Go to the "Admob" section in the settings
  • Fill in your Admob app ID and Admob android app ID
  • Select the ad format (Interstitial, Rewarded Video, etc.)
  • Set the ad frequency (how many times the ad will be displayed)
  • Set the ad duration (how long the ad will be displayed)
  • Set the ad rotation (how many times the ad will be displayed in a row)

IAP Configuration

To configure IAP, follow these steps:

  • Go to the "IAP" section in the settings
  • Fill in your Apple App ID and Apple App Secret
  • Set the product identifier for each product (e.g. "DocScan Pro")
  • Set the product price for each product (e.g. 9.99)
  • Set the product currency (e.g. USD)
  • Set the purchase duration (e.g. forever)

Push Notifications Configuration

To configure push notifications, follow these steps:

  • Go to the "Push Notifications" section in the settings
  • Fill in your Apple Push Notification Service (APNs) certificate
  • Select the notification type (Alert, Badge, Sound, etc.)
  • Set the notification title and message
  • Set the notification icon

Other Settings

To configure other settings, follow these steps:

  • Go to the "Other" section in the settings
  • Set the default file format (e.g. PDF, JPEG)
  • Set the default scan mode (e.g. portrait, landscape)
  • Set the default scan quality (e.g. low, high)
  • Set the default scan resolution (e.g. 200 dpi, 400 dpi)

Note: These are example settings and may need to be adjusted based on your specific use case.

Here are the features of TS DocScan, a mini and powerful mobile scanner for iOS:

  1. Supports iOS 13, 14, 15+ platforms only.
  2. Mini and powerful mobile scanner: Turn your iPhone or iPad into a powerful mobile scanner.
  3. Scan premium quality PDFs or JPGs: Create and manage a virtual copy of credit cards, books, checks, recipes, timetables, and any paper documents.
  4. Automatic or manual image capturing modes: Choose between automatic or manual image capturing modes.
  5. Enhance your scans: Edge detection, optimization, and color corrections to enhance your scanned images.
  6. Flash settings: Adjust flash settings for better image capture.
  7. Ability to turn on a grid: Turn on a grid to help you align your documents.
  8. Fastest recognition using Tesseract API: Use the Tesseract API for fast and accurate text recognition.
  9. Select between 101 OCR languages: Choose your preferred language for text recognition.
  10. Cloud integrations: Integrate with cloud services like iCloud, Dropbox, Evernote, Yandex Disk, Box, OneDrive, and Google Drive.
  11. Creating and saving documents in different formats: Save your scanned documents in colored, grayscale, black and white formats.
  12. High performance and stability: The app is designed for high performance and stability.
  13. User-friendly navigation: Easy to use and navigate through the app.
  14. Scan HIGH-QUALITY: Captures the best possible image in the perfect moment.
  15. Scan QUICKLY: Makes scans with just a tap.
  16. Scan ANYTHING: Works on all occasions with all kinds of documents.
  17. Scan to SHARE: Share your scanned documents with others.

Subscription features:

  • Unlimited scans
  • Premium features
  • No ads

Subscription notes:

  • Subscriptions are billed one time only on the subscription plan, but can be changed with any other from iTunes app subscription.
  • Payment will be charged to iTunes Account at confirmation of purchase.
  • Subscriptions may be canceled by the user and auto-renewal may be turned off by going to the user's Account Settings after purchase.
[TS] DocScan – A mini and Powerful mobile scanner for iOS (Admob, IAP, Push Notifications)
[TS] DocScan – A mini and Powerful mobile scanner for iOS (Admob, IAP, Push Notifications)

$49.00

Shop.Vyeron.com
Logo
Compare items
  • Total (0)
Compare
0