API Reference
Log In
API Reference

Installing

Android

To integrate the com.quicko.income-tax-sdk library in your Android project, follow these steps:

Prerequisites

Ensure you have Android Studio installed and your project is set up with a minimum SDK version of 26 or higher.

1. Add Maven Repository

Add the following to your project-level settings.gradle file inside the allprojects block:

pluginManagement {
    repositories {
        google()
        mavenCentral()
        gradlePluginPortal()
    }
}

2. Add Dependency

Include the SDK in your app-level build.gradle file under dependencies:

dependencies {
    implementation 'com.quicko:income-tax-sdk:1.0.1-RC'
}

3. Sync and run

Sync your project with Gradle files and build the project to complete the integration.

iOS

To integrate the IncomeTaxSDK in your iOS project using CocoaPods, follow these instructions:

Prerequisites

Ensure you have CocoaPods installed. If not, install it using the following command:

sudo gem install cocoapods

1. Create/Update Podfile

Navigate to your project directory in the terminal and run:

pod init

Edit the Podfile to include:

platform :ios, '12.0'
target ':target' do
  use_frameworks!
  pod 'IncomeTaxSDK', '~> :version'
end

Replace ':target' with the actual target name of your project and ':version' with the latest version.

2. Install Pods

Install the pod by running:

pod install --repo-update

3. Import SDK`

In your Swift files where you want to use the SDK, add:

import income_tax_sdk