Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tns-android

Package Overview
Dependencies
Maintainers
3
Versions
975
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tns-android - npm Package Versions

1
98

1.5.1

Diff

erjangavalji
published 1.5.0 •

enchev
published 1.4.0 •

erjangavalji
published 1.3.0 •

hdeshev
published 1.2.1 •

erjangavalji
published 1.2.0 •

erjangavalji
published 1.1.0 •

Changelog

Source

1.1.0 (2015, June 10)

New

  • Implemented #58 to remove the 3-seconds initial timeout for Debug builds.
  • Implemented #118 to replace the MultiDex library with DexClassLoader.
  • Started #103 AOT proxy generation to improve startup time and to enable new scenarios like BroadcastReceivers, BackgroundServices and arbitrary Activity types declared in the manifest.

Fixed

  • #63. An issue which prevented users to extend overloaded methods.
  • #64. A JNI Crash when calling JS method with char.
  • #113. Fixes the extend routine for an Activity.
  • #114. Removes the redundant setNativeScriptOverrides method.
erjangavalji
published 1.0.0 •

Changelog

Source

1.0.0 (2015, April 29)

New

  • Updated the V8 version to 4.1.0.27.
  • Re-implemented debugger support (no more spontaneous dead locks).

Fixed

  • An issue with the error reporting routine.

Breaking Changes

  • Renamed global functions:
    • __log (was Log)
    • __debugbreak (was waitForDebugger)
    • __enableVerboseLogging (was enableVerboseLogging)
    • __disableVerboseLogging (was disableVerboseLogging)
    • __exit (was fail)
erjangavalji
published 0.10.0 •

Changelog

Source

0.10.0 (2015, April 17)

New

  • Added Dynamic Generator for binding proxies. This boosts the initial loading time, especially on Android 5.0+ devices.
  • Added several optimization techniques, which further optimize the loading time and the overall performance.
  • Improved the error reporting mechanism for Debug builds.
  • Added support for package.json and index.js for bootstrapping an application.

Breaking Changes

  • Removed the simulated property-like support for Android types. E.g. the android.content.Intent.getAction() previously was accessible like android.content.Intent.Action. This is no longer valid as it contradicts with the Android APIs.
  • Changed the way extend constructs work
// WRONG
var handler = new android.os.Handler.extend({...})();

// CORRECT
var handlerType = android.os.Handler.extend({...});
var handler = new handlerType();
  • The directory structure in the assets folder has changed. The tns_modules directory is now within the assets/app one. To migrate older CLI projects to the new structure simply move the content of the inner app folder one level up:

####Previous structure:

|--app
|--|--app
|--|--|--bootstrap.js
|--|--|--myFile.js
|--|--tns_modules

####New structure:

|--app
|--|--bootstrap.js
|--|--myFile.js
|--|--tns_modules
erjangavalji
published 0.9.0 •

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc