View Categories

How to install Java

To publish or build your iOS app with QuikApp, you need files from your Apple Developer Account and optionally App Store Connect API keys (for TestFlight uploads).

Setup on macOS
Step 1: Install JDK
  1. Using Homebrew:
				
					brew install openjdk@17
				
			
Or manually from
				
					Oracle/Adoptium
				
			
Step 2: Set JAVA_HOME (Optional but Recommended)
  1. Edit your shell config (/.zshrc for zsh, or /.bash_profile for bash)
				
					export JAVA_HOME=$(/usr/libexec/java_home -v 17) export PATH=$JAVA_HOME/bin:$PATH
Save and reload: source ~/.zshrc
				
			

Step 3: Verify Installation

				
					java -version
keytool -help
				
			

Should both work.

Setup on Windows

Step 1: Install JDK

  1. Download and install JDK 17 (or latest LTS) from: https://www.oracle.com/java/technologies/downloads/ 
    or https://adoptium.net/ (OpenJDK)
  2. Default install path :
				
					C:\Program Files\Java\jdk-17\
				
			
Step 2: Set Environment Variables
  1. Open Control Panel → System → Advanced System Settings → Environment Variables
  2. Under System variables, click New:
				
					Variable name: JAVA_HOME
				
			
				
					Variable value: C:\Program Files\Java\jdk-17
				
			

5. Edit Path, add:

				
					 %JAVA_HOME%\bin
				
			
Step 3: Verify Setup
  1. Run in Command Prompt:
  2. Both should respond without errors.
				
					“java -version”
“keytool -help”
				
			
💬
Smart SiteBot
Online
Hi 👋 Ask me anything about this website.