Questions tagged [cyborg]

Issues related to the Cyborg framework for MVC Android development

Cyborg is a wrapper framework over Android to simplify MVC Android development. Cyborg allows you to develop an Android application using a sophisticated injection mechanism, and a module based architecture following the MCV pattern.

See github project

https://github.com/nu-art/cyborg-core

and video tutorials

https://www.youtube.com/playlist?list=PLAtncvleSdIUl8NjbssV9fzgKFX1Mll3Y

6 questions
1
vote
1 answer

How to add transition animations when presenting new Controller in Cyborg?

So I'm using the createNewLayerBuilder line and the new controller just pops up without an animation. createNewLayerBuilder().setControllerType(ControllerName.class).build(); How do I add one?
Alex Gold
  • 105
  • 8
1
vote
1 answer

how to use the cyborg OnBootCompletedListener?

So I've added the the BootStarterReceiver receiver in the manifest, I've added the OnBootCompletedListener implementation in the module file. (is this the correct practice btw? in the module class) Now how do I start the application? what do I…
Alex Gold
  • 105
  • 8
1
vote
1 answer

App crashes when trying to add a new CyborgController using createNewLayerBuilder()

This is what I'm doing in the Application class: @Override public void onCreate() { super.onCreate(); CyborgBuilder.startCyborg(new CyborgConfiguration(this, R.layout.cyborgview__auto_reply, BasicModulePack.class)); } This is how…
HedeH
  • 2,869
  • 16
  • 25
1
vote
1 answer

Cyborg dependency in Gradle isn't working

I'm trying to add the Cyborg dependency and I'm getting an error in the Gradle when adding compile "com.nu-art-software.cyborg:cyborg-core:0.8.3" (as per the video) Why doesn't that work? edit: here's the error Error message
Alex Gold
  • 105
  • 8
0
votes
1 answer

How do you fire up an activity from sleep on event with cyborg?

I have an activity with a service that keeps the app alive even after you kill it (unless you force close it) and it keeps getting events (in my case from firebase) Now I want to fire up an activity in case of a specific event change from firebase.…
Alex Gold
  • 105
  • 8
0
votes
1 answer

Reference to Controllers which were instantiated through XML

I've created an utility controller and instantiated it through the xml (CyborgView). So far so good. I got stuck, however, when I wanted to use it... How do I get a reference of that controller from the xml? Note that my goal here is to use multiple…
MrGuy
  • 654
  • 1
  • 5
  • 18