Questions tagged [appc-hyperloop]

Use for programming or development questions related to Appcelerator's Hyperloop solution to access any (3P) API for developing Native Mobile Apps using JavaScript. Please always include the "appcelerator" tag as well and do not use the "hyperloop" tag which is something else.

See the Tag Info on for more information.

10 questions
3
votes
1 answer

Hyperloop unknown or unsupported type (UIAlertController)

I'm trying out Hyperloop. And I'm trying to run a custom swift script I have in my project (like shown in the exmaple). Here's my swift code: import UIKit public class MySwiftCode : NSObject { func SayHello() { let alertController =…
developer82
  • 13,237
  • 21
  • 88
  • 153
3
votes
2 answers

Can't run Hyperloop project

I've downloaded the latest SDK from master as explained here: http://builds.appcelerator.com/#master I've also downloaded the latest Hyperloop from here http://labs.appcelerator.com/project/55f74a9f421c44837717716b/Hyperloop-Module and followed the…
developer82
  • 13,237
  • 21
  • 88
  • 153
2
votes
2 answers

Hyperloop error when processing Cocoapods dependencies

After downloading the hyperloop-examples files, and running appc ti build -p ios, I get errors when Hyperloop finds the CocoaPods dependencies. The exact error text is: [ERROR] An error occurred during build after 3s 372ms [ERROR] pod install…
2
votes
1 answer

Hyperloop compilation error

I've written before about a problem running Hyperloop project. If run a newly created project to witch I added Hyperloop from Appcelerator Studio it seems like compilation is stuck on: [INFO] Starting Hyperloop assembly [INFO] Skipping Hyperloop…
developer82
  • 13,237
  • 21
  • 88
  • 153
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
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

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
0 answers

Error: package hyperloop does not exist

I have created a new project and activated hyperloop. The information in tiapp.xml is correct (as in the documentation). When I create the Android app I get this error: Package hyperloop does not exist When creating the iOS app I get this error: **…
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