Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: macos-26
name: Android
env:
SDK_VERSION: 13.2.0.GA
SDK_VERSION: 13.3.1.GA
steps:
- uses: actions/checkout@v7

Expand All @@ -36,7 +36,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: '22.x'
node-version: '24.x'

- name: Cache Gradle packages
uses: actions/cache@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: macos-26
name: full build
env:
SDK_VERSION: 13.3.0.GA
SDK_VERSION: 13.3.1.GA
DEVELOPER_DIR: /Applications/Xcode_26.2.app/Contents/Developer
steps:
- name: Checkout repository
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: macos-26
name: iOS
env:
SDK_VERSION: 13.2.0.GA
SDK_VERSION: 13.3.1.GA
# This one uses Swift 3.8.1. If you're running into the "Unsupported Swift architecture", verify which
# Swift version is used for the specified Ti SDK version, e.g. by looking into:
# ~/Library/Application Support/Titanium/mobilesdk/osx/<version>/iphone/Frameworks/TitaniumKit.xcframework/ios-arm64/TitaniumKit.framework/Headers/TitaniumKit-Swift.h
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: '22.x'
node-version: '24.x'

- name: Package metabase
working-directory: ./packages/hyperloop-ios-metabase
Expand Down
3 changes: 2 additions & 1 deletion android/hooks/hyperloop.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ exports.cliVersion = '>=3.2';

(function () {
const path = require('path');
const { pathToFileURL } = require('url');
const ejs = require('ejs');
const fs = require('fs-extra');
const chalk = require('chalk');
Expand Down Expand Up @@ -169,7 +170,7 @@ exports.cliVersion = '>=3.2';
minSdkVersion: this.builder.minSDK,
sdkDir: this.builder.androidInfo.sdk.path.replace(/\\/g, '\\\\'),
targetSdkVersion: this.builder.targetSDK,
tiMavenUrl: encodeURI('file://' + path.join(this.builder.platformPath, 'm2repository').replace(/\\/g, '/')),
tiMavenUrl: pathToFileURL(path.join(this.builder.platformPath, 'm2repository')).href,
tiProjectPlatformAndroidDir: path.join(this.builder.projectDir, 'platform', 'android'),
tiSdkVersion: this.builder.titaniumSdkVersion
});
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hyperloop",
"version": "8.0.1",
"version": "8.0.2",
"description": "Access native APIs from within Titanium.",
"keywords": [
"appcelerator",
Expand Down Expand Up @@ -50,7 +50,7 @@
"request": "^2.87.0",
"semver": "^5.1.0",
"temp": "^0.9.0",
"titanium": "8.1.5"
"titanium": "9.1.0"
},
"scripts": {
"test": "echo 'Error: no test specified'"
Expand Down
Loading