2
votes

How can I access the Android Java code, created by the Titanium as a result of the Titanium development?

3
It comes all precompiled with the SDKs. I think you'd have to get a fork off the GitHub project and compile it yourself once you've made the changes. I was trying to do this yesterday but have no idea how to compile it github.com/appcelerator/titanium_mobile - Ronnie

3 Answers

1
votes

You don't have such a possibility since all the javascript code in Titanium is interpreted by a JavaScript engine internally and .class files are generated.

Follow this link for further explanation.

0
votes

If you are referring to the interpretation of your javascript code, then you can't. Everything is turned into symbols for Titanium to interpret, but you can find this at your /build folder

0
votes

Titanium use javascript code, Modules let you write code in a platform's native language (Java for Android), Titanium can use java native code in module and java code run in v8 。