Akinon Release Notes (05/12/2025) are now live! Click here to learn what's new.
LogoLogo
API Reference
  • Home
  • Quick Start
  • Tutorials
  • Technical Guides
  • Release Notes
  • Glossary
  • Welcome to Akinon Technical Guides
  • ACC
    • ACC CLI
    • Create Application via CLI
    • Deploy Environment Variables
    • App Store for Developers
  • Omnitron
    • Product Types
    • Product Categorization
    • Splitting a Merged Order Item
  • Commerce
    • Shipping Rules Calculator
    • Data Source Shipping Options
    • Attribute Based Shipping Options
    • Filtering Products
    • Conversation & Messages
    • Sitemap Configuration
    • Weight-Based Product Sales
    • Group Attribute Sets
    • Contract Management
    • Find in Store for Whippy Ware
    • Plugins
    • Remote Price
    • E-mail Templates
    • Loyalty Accounts
    • Search Structure
    • User Segmentation & Rules
    • Promotions
  • OMS
    • Getting Started with OMS
    • Basic Setup
    • Scenarios
    • Capacity Feature
    • Package Management
      • Packages
      • Transfer
      • States
    • Commands
      • Packages
        • Package Command Parameters
        • DeAllocate Package Reservations Command
        • Channel Based Complete Packaging without Shipment Command
        • Complete Packaging with Shipment Command
        • Complete Packaging without Shipment Command
        • Package Refuse with Denial Reason Command
        • Product Not Found & Wrong Product Command
        • Product Not Found & Wrong Product Command Advanced
        • Package Packed for Refund Command
        • Block The Package For Action Command
        • Unblock the Package For Action Command
        • Update The Package’s Invoice
        • Manual Planning Command
      • Transfer
        • Transfer Order Advanced Command
        • Product for Transfer Not Found & Wrong Product Command
        • Transfer Delivered Command
        • Transfer Dispatch Command
        • Transfer Ready for Dispatch Command
        • Transfer Out Of Stock
      • Shipment
        • Shipment Order Command
        • Package Advanced Shipment Command
        • Ship The Package Command
        • Ship The Package without Shipment Integration Command
        • Update The Package’s Shipment Status Command
        • Update Shipment Info of Package Command
    • Inventory Locations & Engine
      • Properties & Domain Relation
      • Customization
      • Inventory Engine
    • Fulfillment
      • Shipments
      • Invoice Integration
    • Webhooks
      • Webhook Examples
        • Order Webhook
        • Package Webhook
        • Shipment Webhook
        • Stock Location Webhook
        • Transfer Webhook
    • Integrating OMS with Seller Center
  • Instore
    • Getting Started
    • Cash Register Integration
    • OTP (One Time Password) Process
    • Services
      • Password Reset Services
  • Marketplace Dashboard
    • N11 Marketplace Setup Configurations
    • Trendyol Marketplace Setup Configurations
    • Walmart Marketplace Setup Configurations
    • Amazon Marketplace Setup Configurations
    • Hepsiburada Marketplace Setup Configurations
  • Project Zero
    • Django
      • Basic Setup
      • Project Structure
        • Templates & Components
        • Private Dependencies
        • Omnife Project Submodule
        • Webpack
        • ESLint Rules
        • Bundles
        • Multilanguage & Translation
        • Environmental File
        • Custom Error Pages
        • Icon Font
      • Page Types
        • Static Pages & Flatpages
        • Account Page
          • Template Rendering in Account Pages
          • Forms & Validation
        • Basket Page
          • Redux Basket State
          • Basket Page - View
        • Checkout
          • Redux Checkout State
          • View & Template Rendering
          • Masking & Validation
      • Theming & Styling
      • Widgets
      • SEO Management
      • Extending Project Zero
    • Next.js
      • Basic Setup
      • Deployment
      • Static Assets
      • Plugins
      • Widgets
      • Icons
      • Localization
      • SEO Management
      • Advanced Usage
      • Data Fetching
        • Client
          • Account
          • Address
          • Basket
          • Checkout
          • Misc
          • Product
          • User
          • Wishlist
        • Server
          • Category
          • Flat Page
          • List
          • Menu
          • Product
          • SEO
          • Special Page
          • Widget
  • App Maker
    • Setup Your Environment
    • Plugin Quickstart
    • Create Project
    • Setup Existing Project
    • Deploy Project
    • Users and Roles
    • Add Public Key
    • App Maker CLI
    • Create App on Stores
      • Creating App on Apple App Store
      • Creating App on Google Play Store
    • Mobile App Framework
      • Configuration
      • Framework
      • Project Structure
        • Structure
        • Data Containers
        • Pages
      • Dependency Integration
        • Plugins
        • Akinon Plugin Adapter
  • Akifast
    • HPP
      • Getting Started
      • Authorization
      • Payment Session Creation
        • Key Points Before Creating a Payment Session
        • Creating Payment Session
        • Redirecting to the Payment Page
        • Errors Encountered During Payment Session Creation
      • Merchant Services
        • Shipping Query URL
        • Agreement Query URL
        • Other URLs
  • B2B
    • Getting Started
    • B2B Setup
  • Adds-on
    • Invoicer
      • Introduction
      • Invoice & Pay On Delivery Service
  • Channel App Template
    • Introduction
    • Installation and Usage
    • Development Steps
      • Folder Structure
      • Starting Step
      • Encoding the Sales Channel
        • Introduction
        • Setup
        • Products
        • Product Price
        • Product Stock
        • Product Image
        • Orders
        • Product Data
      • Adding a New Command to Akinon
      • Listening for External Requests
    • Architecture
      • Introduction
      • Integration
      • Services (Flows)
        • Introduction
        • Product Service
        • Price Service
        • Stock Service
        • Image Service
        • Order Service
  • Multi Regional Settings
    • Multi Regional Settings
Powered by GitBook

© 2025 Akinon. All rights reserved.

On this page
  • Properties
  • displayName
  • productName
  • version
  • scheme
  • icon
  • splashScreen
  • build
  • notification
  • android
  • ios
  • huawei

Was this helpful?

  1. App Maker
  2. Mobile App Framework

Configuration

PreviousMobile App FrameworkNextFramework

Last updated 16 days ago

Was this helpful?

akinon.json file is used to manage the native side of the application. It allows managing the fields in native side such as application name, icon and version during the application build process.

Properties

displayName

(string) is the name of the application in the home page. This data is used to manage the app_name field in android/app/src/main/res/values/strings.xml and Display Name field in XCode.

productName

(string) is used to entitle the .ipa and .app files. Special characters are not allowed.

version

(string) refers to the application version in IOS and Android platforms. It allows managing the fields in IOS and in Android.

scheme

(array) is the field to define Custom . It allows to identify the URLs like akinon://product-detail for deeplink.

{
    "scheme":  ["akinon"]
}

icon

(object) Used to configure the icon that will appear on the main screen of the application. The provided image will be automatically resized to other formats.

  • image (string): The icon image should be provided as a local path. It is recommended to use a 1024x1024 .png file.

  • backgroundColor (string) The background color of the icon.

{
  "icon": {
    "image": "./src/assets/images/icon.png",
    "backgroundColor": "#FFFFFF"
  }
}

splashScreen

(object) Used to configure the application's splash screen.

  • image (string) The splash screen image should be provided as a local path. It is recommended to use a .png file.

  • resizeMode (string) Determines how the image will be displayed on the splash screen. Acceptable values are center, contain, or cover.

  • backgroundColor (string) The color that fills the background of the splash screen.

{
  "splashScreen": {
    "image": "./src/assets/images/launchscreen.png",
    "resizeMode": "cover",
    "backgroundColor": "#FFFFFF"
  }
}

build

(object) Defines the configurations to be used during the application's build process.

production

(object) Contains specific configurations for the production environment.

  • ios (object) Contains settings specific to the iOS platform.

    • xcodeVersion (string) Specifies the version of XCode to be used during the build process. Supported XCode versions:

      • 14.2

      • 15.0.1

      • 15.3

      • 15.4

  • android (object) Contains settings specific to the Android platform.

    • javaVersion (string) Specifies the version of Java to be used during the build process. Supported Java versions:

      • 11

      • 17

{
  "build": {
    "production": {
      "ios": {
        "xcodeVersion": "14.2"
      },
      "android": {
        "javaVersion": "11"
      }
    }
  }
}

notification

(object) is used to configure push notifications.

  • androidSound (string): Local path of the notification sound that will be used in Android must be given. Recommended sound format is .mp3.

  • iosSound (string): Local path of the notification sound that will be used in IOS must be given. Recommended sound format is .mp3.

{
  "notification": {
    "icon": "./src/assets/androidNotificationIcon.png",
    "androidSound": "./src/assets/sounds/notification_android_sound.mp3",
    "iosSound": "./src/assets/sounds/notification_ios_sound.mp3"
  }
}

android

(object) is used to configure the Android platform.

  • package (string) is the name of application package where the name must be unique in Play Store and cannot be changed once published.

{
  "android" : {
    "intentFilters": [{
      "action": "VIEW",
      "data": [{
        "scheme": "https",
        "host": "demo.akinon.net",
        "pathPrefix": "/"
      }],
      "category": ["BROWSABLE", "DEFAULT"],
      "autoVerify": true
    }]
  }
}
  • permissions (array) is the list of permissions that are used by the application. Below are the list of permissons for different purporses:

    • android.permission.INTERNET

    • android.permission.ACCESS_NETWORK_STATE

    • android.permission.SYSTEM_ALERT_WINDOW

    • android.permission.WAKE_LOCK

    • com.google.android.c2dm.permission.RECEIVE

    • android.permission.ACCESS_WIFI_STATE

    • android.permission.ACCESS_COARSE_LOCATION

    • android.permission.ACCESS_FINE_LOCATION

    • android.permission.CAMERA

    • android.permission.MANAGE_DOCUMENTS

    • android.permission.READ_CONTACTS

    • android.permission.WRITE_CONTACTS

    • android.permission.READ_CALENDAR

    • android.permission.WRITE_CALENDAR

    • android.permission.READ_EXTERNAL_STORAGE

    • android.permission.READ_INTERNAL_STORAGE

    • android.permission.READ_PHONE_STATE

    • android.permission.RECORD_AUDIO

    • android.permission.USE_FINGERPRINT

    • android.permission.VIBRATE

    • android.permission.WRITE_EXTERNAL_STORAGE

    • android.permission.READ_SMS

    • com.anddoes.launcher.permission.UPDATE_COUNT

    • com.android.launcher.permission.INSTALL_SHORTCUT

    • com.google.android.gms.permission.ACTIVITY_RECOGNITION

    • com.google.android.providers.gsf.permission.READ_GSERVICES

    • com.htc.launcher.permission.READ_SETTINGS

    • com.htc.launcher.permission.UPDATE_SHORTCUT

    • com.majeur.launcher.permission.UPDATE_BADGE

    • com.sec.android.provider.badge.permission.READ

    • com.sec.android.provider.badge.permission.WRITE

    • com.sonyericsson.home.permission.BROADCAST_BADGE

    • android.permission.FOREGROUND_SERVICE

    • android.permission.USE_BIOMETRIC

{
  "android" : {
    "permissions": ["android.permission.CAMERA", "android.permission.INTERNET" ]
  }
}
  • removePermissions (array) If there are permissions to be removed during the build process, they should be added to the removePermissions array. The specified permissions will be removed during the build using the tools:node="remove" configuration.

{
  "android" : {
    "removePermissions": ["android.permission.CAMERA", "android.permission.INTERNET" ]
  }
}

ios

  • bundleIdentifier (string) is the independent bundle identifier for the application which allows iOS and macOS to recognize the updates in the application. Bundle identifier must be registered in Apple and unique for the application.

{
  "ios" : {
    "associatedDomains": ["applinks:demo.akinon.net"]
  }
}
  • teamIdentifier (string) is unified with teamId and bundleIdentifier in order for the application to be recognized by the app store. You must enter the teamId which is existing in Developer Apple into this field.

  • usesAppleSignIn is to decide whether the apolication will use Apple Sign-In or not.

  • infoPlist (object) is used to configure Info Plist file.

{
 "ios": {
    "infoPlist": {
     "NSCameraUsageDescription": "This app uses the camera to scan barcodes on event tickets.",
     "CFBundleAllowMixedLocalizations" : true,
     "LSApplicationQueriesSchemes": ["akinon"]
    }
  }
}

huawei

(object) Used to configure the Huawei platform.

  • appGalleryConnectServiceFile (string) Used for communication with AppGallery Connect services. The local path to the agconnect-services.json file should be provided.

{
  "huawei": {
    "appGalleryConnectServiceFile": "./src/assets/resources/agconnect-services.json"
  }
}

icon (string): Notification icon must be given as a local path. For more info, please check .

versionCode (number) is the version number for Google Play. It's recommended to increase the version number incrementally.

intentFilters (array) defines the URL variants for deep linking.

associatedDomains (array): URLs that will be subject to deep linking are defined as string list. In order for the service to work properly, the Associated Domains field in the identifiers must be activated through Developer Apple.

CFBundleShortVersionString
versionName
URL Scheme
Google Design Principles
Please check here for more info.
Please check here for more info.
Please check here for more info.