Titanium Module (is there any module or support of App dynamics for titanium appcelrator) - titanium

We have Some question Related about app dynamics module in Appcelerator.
How to use the iOS libraries in the appcelerator module which supports the framework of appdynmics. Is it possible to add a iOS native library in appcelerator titanium ?
Is there any support for appdynmics in appcelerator Titanium ?
Is there any module for the appdynmics in appcelerator?

1.: Yes, you can extend Titanium by creating modules or using Hyperloop. The best option currently is to create a module. Some documentation is available at:
* https://devblog.axway.com/mobile-apps/write-titanium-ios-native-modules-swift/
* https://wiki.appcelerator.org/display/guides2/iOS+Module+Development+Guide
the 2nd link also has an Android section if you are interested in that too.
Appdynamics SDK documentation can be found here: https://docs.appdynamics.com/display/PRO45/Instrument+iOS+Applications
2. / 3. No (at least not on github). There is a page at http://gitt.io/search?q=appdynamics where you can search for modules on github
So you can either create one yourself or make a offer in the Ti-Slack Job section (ti-slack.slack.com/). Perhaps you'll find someone who will create one for you.

Related

React Native CLI Setup for both IOS and android

I am trying to start a react native project using the React Native CLI method (https://reactnative.dev/docs/environment-setup). My first question is, if I have a mac and my friend has a windows computer can we both work on the same app? Also, how do I configure one single code base for both ios and android? Do I just follow the installation instructions for both in a single project? Thanks!
Yes, you can work separately on windows and mac for the same app and you don't have to configure any kind of codebase as react native is hybrid app development technology, you just have to write a single code for both the android and ios platforms.
To install react native CLI just follow the official document on your specific platforms because both of them have a slight difference in the installation process, after successful installation, I would suggest you to use some kind of VCS(Version controlling system) like git or svn.
I am also working in the same process as you have described I am developing in windows and my friend is working on the mac.
feel free to contact me I will help you if you have any kind of queries

Loads SDK into react-native app

Suppose I have SDK for a an application like true caller : https://github.com/truecaller/android-sdk .
and I want to load that SDK on my own react-native app on both platforms android and iOS , I'm new to react-native and I searched the documentation and didn't find any clear tutorial.
Could you suggest a clear tutorial to get start with ?
First of all you need to understand how to build a react-native app over your existing java based app. This will give you better understanding of how to integrate your existing dependencies with react-native. Then following you can try to integrate any other java sdk compatible with react-native. Read this doc.
Update - Here's another doc which can help you build your own native modules.

Module for OneSignal for Appcelerator

Recently I found OneSignal platform we can send push notifications for free, their service is really complete. I'm trying to implement it on Appcelerator but I can't find any module for Appcelerator.
Did anyone already use their services on Appcelerator? How can I create a module for OneSignal for appcelerator I am a newbie with all of this :/
You can find guides on Appcelerator module development here:
Android_Module_Development_Guide
iOS_Module_Development_Guide

ReactNativeART documentation and stabillity

ReactNativeART examples are available across web (eg. http://browniefed.com/blog/2015/11/07/react-native-how-to-create-twitter-exploding-hearts/) but not in react native docs and source code has references. (https://github.com/facebook/react-native/tree/master/Libraries/ART)
Is it available for ios and android and if so why isn't documented yet on react native documentation page?
The ART module has been published and all apis seems to be stable,we have already use it in our project and it preforms well.
Facebook has split react-native and react-dom form react for native and web platform,they share same addons and implements.the ART module is a react-native implement of react-art,so we have to find documentation in react-art project.While react-art is a library based on sebmarkbage/art.this issue may be helpful.

include dojo toolkit in appcelerator titanium

I want to use dojoToolkit in my project. But when I include it with Ti.include('dojo/dojo/dojo.js') I have got a error message "defineAlreadyDefined". Titanium has method called define in global namespace and there is method with similar name in dojo. Also there are some other methods with similar names (for example, required). How can I use it?
P.S. I build my project for web
Dojo as is will not work in Titanium. Dojo is a browser toolkit, not a mobile toolkit, it accesses things that are only for the web.
But, this guy ported it over to work with titanium, try it instead.