David
David

Reputation: 889

Titanium module source code

I have Securely module installed.

It have createProperties() function inside, how can I jump to definition of this function?

I saw documentation, I just need straightforward source code of this function.

It has libbencoding.securely.a file, but there is no way I can uncompress it to view source code.

I tried a lot of options, but no luck.

Can I do it inside Appcelerator Studio, or any other IDE ?

Upvotes: 0

Views: 81

Answers (1)

miga
miga

Reputation: 4055

The source code is available. Have a look here: https://github.com/benbahrenburg/Securely/blob/master/Android/src/bencoding/securely/PropertiesProxy.java#L79

The libs e.g. libbencoding.securely.so are created during compiling. The (android) project can be build completely from the source.

libbencoding.securely.a is inside the binary iOS version of the module, while the source-code is available at https://github.com/benbahrenburg/Securely/tree/master/iOS

Upvotes: 2

Related Questions