Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
10 changes: 5 additions & 5 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="build/.apt_generated"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="/Users/marcelpociot/Library/android-sdk-macosx/add-ons/addon-google_apis-google-10/libs/maps.jar"/>
<classpathentry kind="lib" path="/Users/marcelpociot/Library/Application Support/Titanium/mobilesdk/osx/3.2.3.GA/android/titanium.jar"/>
<classpathentry kind="lib" path="/Users/marcelpociot/Library/Application Support/Titanium/mobilesdk/osx/3.2.3.GA/android/kroll-common.jar"/>
<classpathentry kind="lib" path="/Users/marcelpociot/Library/Application Support/Titanium/mobilesdk/osx/3.2.3.GA/android/kroll-apt.jar"/>
<classpathentry kind="lib" path="/Users/ant/Library/Android/sdk/add-ons/addon-google_apis-google-23/libs/maps.jar"/>
<classpathentry kind="lib" path="/Users/ant/Library/Application Support/Titanium/mobilesdk/osx/6.0.1.GA/android/titanium.jar"/>
<classpathentry kind="lib" path="/Users/ant/Library/Application Support/Titanium/mobilesdk/osx/6.0.1.GA/android/kroll-common.jar"/>
<classpathentry kind="lib" path="/Users/ant/Library/Application Support/Titanium/mobilesdk/osx/6.0.1.GA/android/kroll-apt.jar"/>
<classpathentry kind="src" path=".apt_generated">
<attributes>
<attribute name="optional" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="/Users/marcelpociot/Library/android-sdk-macosx/platforms/android-16/android.jar"/>
<classpathentry kind="lib" path="/Users/ant/Library/Android/sdk/platforms/android-23/android.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
tmp
bin
build
*.zip
.apt_generated
11 changes: 7 additions & 4 deletions build.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
titanium.platform=/Users/marcelpociot/Library/Application Support/Titanium/mobilesdk/osx/3.2.3.GA/android
android.platform=/Users/marcelpociot/Library/android-sdk-macosx/platforms/android-16
google.apis=/Users/marcelpociot/Library/android-sdk-macosx/add-ons/addon-google_apis-google-16
android.ndk=/Users/marcelpociot/Downloads/android-ndk-r9d
titanium.platform=/Users/ant/Library/Application Support/Titanium/mobilesdk/osx/6.0.1.GA/android
# android.platform=/Users/ant/Library/Android/sdk/platforms/android-19
android.platform=/Users/ant/Library/Android/sdk/platforms/android-23
# google.apis=/Users/ant/Library/Android/sdk/add-ons/addon-google_apis-google-16
google.apis=/Users/ant/Library/Android/sdk/add-ons/addon-google_apis-google-23
# android.ndk=/Users/ant/Developer/tools/android-ndk-r9d
android.ndk=/Users/ant/Developer/tools/android-ndk-r11c
Binary file not shown.
Binary file modified dist/webviewfragment.jar
Binary file not shown.
Binary file modified libs/armeabi-v7a/libde.marcelpociot.webviewfragment.so
Binary file not shown.
Binary file removed libs/armeabi/libde.marcelpociot.webviewfragment.so
Binary file not shown.
Binary file modified libs/x86/libde.marcelpociot.webviewfragment.so
Binary file not shown.
7 changes: 4 additions & 3 deletions manifest
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
# this is your module manifest and used by Titanium
# during compilation, packaging, distribution, etc.
#
version: 1.0
apiversion: 2
version: 2.0
apiversion: 3
architectures: armeabi-v7a x86
description: My module
author: Marcel Pociot
license: MIT
Expand All @@ -15,4 +16,4 @@ name: webviewfragment
moduleid: de.marcelpociot.webviewfragment
guid: ce49d91a-9a85-4608-bb37-0dd75a6d4dff
platform: android
minsdk: 3.2.3.GA
minsdk: 6.0.0
2 changes: 1 addition & 1 deletion src/de/marcelpociot/webviewfragment/Webview.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import org.appcelerator.kroll.KrollDict;
import org.appcelerator.titanium.proxy.TiViewProxy;
import org.appcelerator.titanium.util.Log;
import org.appcelerator.kroll.common.Log;
import org.appcelerator.titanium.util.TiRHelper;
import org.appcelerator.titanium.util.TiRHelper.ResourceNotFoundException;
import org.appcelerator.titanium.view.TiUIView;
Expand Down
2 changes: 1 addition & 1 deletion src/de/marcelpociot/webviewfragment/WebviewProxy.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import org.appcelerator.kroll.KrollProxy;
import org.appcelerator.kroll.annotations.Kroll;
import org.appcelerator.titanium.TiC;
import org.appcelerator.titanium.util.Log;
import org.appcelerator.kroll.common.Log;
import org.appcelerator.titanium.util.TiConvert;
import org.appcelerator.titanium.util.TiRHelper;
import org.appcelerator.titanium.util.TiRHelper.ResourceNotFoundException;
Expand Down