Questions tagged [hyperloop]

Appcellerator's compiler which converts a custom version of Javascript (a.k.a. HJS) into native code.

The code works in tandem with a JavaScript runtime to execute compiled native instructions.

25 questions
1
vote
1 answer

Hyperloop module LFLiveKit

I have an issue with native issues in my hyperloop module for LFLiveKit, looking for some advice and help. I only see a red screen showing. I also get the alerts for the permissions. Here is my code: var UIScreen = require('UIKit/UIScreen'), …
1
vote
0 answers

Use AVAudioSession.sharedInstance in Hyperloop JS file

How can I use AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryAmbient, with: .mixWithOthers) in a JS file? I want to play sounds on top of music without causing the music from any source to stop. I am able to do it for Apple music,…
Mizal
  • 67
  • 1
  • 8
1
vote
1 answer

Custom TableViewCell with Appcelerator Hyperloop

Hi would like to create custom tableViewCell with hyperloop. The problem is, I don't figure how to. I've tried implement it with a swift class : Cell.swift import UIKit public class MyCell: UITableViewCell{//UICollectionViewCell { public var…
1
vote
1 answer

Appcelerator Hyperloop - using 3rd party swift library

I'm trying to use Hyperloop in order to use a third-party open source library. The library I want to use is Sweet Alert iOS. The library has a swift file. I have put this file inside an src directory inside my project's main folder (does it have to…
1
vote
1 answer

Loading OpenWebRTC-SDK in appcelerator Hyperloop through cocoa pods

I'm trying to use OpenWebRTC in appcelerator with hyperloop and even it compiles and launches the app I can't access to the module. This is my PodFile: platform :ios, '7.0' target 'Hyperloop_Sample' do pod 'OpenWebRTC-SDK', :git =>…
0
votes
1 answer

how to catch an onScroll event in Ti.UI.ListView?

Is there a way to catch an onScroll event in ListView like it is done for ScrollView? It is not exposed in SDK, any solution using module or hyperloop is welcome
0
votes
1 answer

Appcelerator - include jar in build at compile-time?

Since Appcelerator(/Hyperloop) doesn't use Gradle or Maven to manage dependencies, I need to include them all manually for my project by placing them in the app/platform/android folder. I have done this, however I also need to include google dagger…
0
votes
1 answer

Appcelerator Hyperloop Android handle return data

I am trying to use Hyperloop to wrap the Estimote SDK. I've made some significant progress and have been able to range for and find beacons. My problem is with the data returned from the Estimote SDK. The onBeaconsDiscovered event returns all the…
lawjeremy
  • 58
  • 10
0
votes
1 answer

Hyperloop and standard CommonJS project

I tried to use Hyperloop in a non-Alloy project and apparently it doesn't work (please, correct me if I'm wrong). Is there any technical reason why a traditional CommonJS project can't make use of Hyperloop?
user1094081
0
votes
1 answer

How do I determine what the correct require statement is for a cocoapod using hyperloop?

Question on how to require cocoapods in JavaScript using Hyperloop: what is the most reliable way to know the string that is supposed to be passed to the require statement for a cocoapod? For example the Ti docs use pod 'JBChartView' in their…
1
2