Updated the Cuteness app to the latest Kimera. Removed the camera module from the BCL project.

This commit is contained in:
atanasovg
2014-05-29 18:51:38 +03:00
parent c600a2b003
commit d9c540e2fb
3 changed files with 4 additions and 11 deletions

View File

@@ -101,13 +101,6 @@
<TypeScriptCompile Include="declarations.android.d.ts">
<DependentUpon>declarations.d.ts</DependentUpon>
</TypeScriptCompile>
<TypeScriptCompile Include="camera\camera.android.ts">
<DependentUpon>camera.d.ts</DependentUpon>
</TypeScriptCompile>
<TypeScriptCompile Include="camera\camera.d.ts" />
<TypeScriptCompile Include="camera\camera.ios.ts">
<DependentUpon>camera.d.ts</DependentUpon>
</TypeScriptCompile>
<TypeScriptCompile Include="declarations.ios.d.ts">
<DependentUpon>declarations.d.ts</DependentUpon>
</TypeScriptCompile>
@@ -166,7 +159,6 @@
<TypeScriptCompile Include="location\index.ts" />
<TypeScriptCompile Include="file-system\index.ts" />
<TypeScriptCompile Include="console\index.ts" />
<TypeScriptCompile Include="camera\index.ts" />
<TypeScriptCompile Include="application\index.ts" />
<TypeScriptCompile Include="android17.d.ts" />
<TypeScriptCompile Include="promises\promises.ts" />
@@ -222,9 +214,6 @@
<TypeScriptCompile Include="libjs.d.ts" />
</ItemGroup>
<ItemGroup>
<TypeScriptCompile Include="camera\camera-types.ts">
<DependentUpon>camera.d.ts</DependentUpon>
</TypeScriptCompile>
<Content Include="_references.ts" />
<Content Include="image-source\Readme.md" />
<Content Include="http\Readme.md" />

View File

@@ -37,6 +37,9 @@ var initEvents = function () {
if (androidApp.onActivityDestroyed) {
androidApp.onActivityDestroyed(activity);
}
// TODO: This is a temporary workaround to force the V8's Garbage Collector, which will force the related Java Object to be collected.
gc();
},
onActivityPaused: function (activity: any) {
if (activity === androidApp.currentActivity) {

View File

@@ -340,6 +340,7 @@ declare module android {
declare var app;
declare var telerik;
declare var gc: () => any;
declare module com {
export module koushikdutta {