Skip to content

Commit 6d538b1

Browse files
committed
Add Changelog file. Rename a typo file.
1 parent 7da5021 commit 6d538b1

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
lines changed

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
Android Runtime Changelog
2+
==============================
3+
4+
0.10.0 (2015, April 17)
5+
==
6+
7+
### Fixed
8+
9+
### New
10+
11+
* Added Dynamic Generator for binding proxies. This boosts the initial loading time, especially on Android 5.0+ devices.
12+
* Added several optimization techniques, which further optimize the loading time and the overall performance.
13+
* Improved the error reporting mechanism for Debug builds.
14+
* Added support for package.json and index.js for bootstrapping an application.
15+
16+
### Breaking Changes
17+
18+
* 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.
19+
* 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:
20+
21+
####Previous structure:
22+
```
23+
|--app
24+
|--|--app
25+
|--|--|--bootstrap.js
26+
|--|--|--myFile.js
27+
|--|--tns_modules
28+
```
29+
30+
####New structure:
31+
```
32+
|--app
33+
|--|--bootstrap.js
34+
|--|--myFile.js
35+
|--|--tns_modules
36+
```

src/src/com/tns/internal/DefaultEtractPolicy.java renamed to src/src/com/tns/internal/DefaultExtractPolicy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.tns.internal;
22

3-
public class DefaultEtractPolicy implements ExtractPolicy
3+
public class DefaultExtractPolicy implements ExtractPolicy
44
{
55
public boolean shouldExtract(android.content.Context context)
66
{

0 commit comments

Comments
 (0)