Skip to content

Instantly share code, notes, and snippets.

@aminulaust
Created November 28, 2017 15:48
Show Gist options
  • Save aminulaust/65c2a1ed20a035aaad71a2149174de1d to your computer and use it in GitHub Desktop.
Save aminulaust/65c2a1ed20a035aaad71a2149174de1d to your computer and use it in GitHub Desktop.
var win = Ti.UI.createWindow({
backgroundColor : '#fff'
});
var webview = Ti.UI.createWebView({
url : 'https://appcelerator.com'
});
webview.addEventListener('load', function(e) {
Ti.API.warn(e.source.html);
});
win.add(webview);
win.open();
@aminulaust
Copy link
Author

aminulaust commented Nov 28, 2017

[INFO] : TiApplication: (main) [3,3] checkpoint, app created.
[INFO] : TiApplication: (main) [172,175] Titanium 6.3.0 (2017/10/31 18:13 undefined)
[INFO] : MultiDex: VM with version 2.1.0 has multidex support
[INFO] : MultiDex: install
[INFO] : MultiDex: VM has multidex support, MultiDex support library is disabled.
[INFO] : DatabaseHelper: No value in database for platform key: 'unique_machine_id' returning supplied default ''
[INFO] : DatabaseHelper: No value in database for platform key: 'hardware_machine_id' returning supplied default ''
[DEBUG] : APSAnalyticsModel: Creating Database appcAnalytics.db
[WARN] : TiAndroid: (main) [1186,1361] Application instance no longer available. Unable to get current activity.
[WARN] : TiAndroid: (main) [6,1367] Application instance no longer available. Unable to get current activity.
[WARN] : TiAndroid: (main) [0,1367] Application instance no longer available. Unable to get current activity.
[INFO] : TiApplication: (main) [49,1416] Titanium Javascript runtime: v8
[WARN] : art: Before Android 4.1, method android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter, android.content.res.ColorStateList, android.graphics.PorterDuff$Mode) would have incorrectly overridden the package-private method in android.graphics.drawable.Drawable
[INFO] : TiRootActivity: (main) [0,0] checkpoint, on root activity create, savedInstanceState: null
[ERROR] : SensorManager: uid = 10863
[INFO] : SensorManager: registerListenerImpl: listener = android.view.OrientationEventListener$SensorEventListenerImpl@6273657, sensor = {Sensor name="Accelerometer Sensor", vendor="HTC Group Ltd.", version=1, type=1, maxRange=19.6133, resolution=0.01, power=0.17, minDelay=10000}, delay = 200000, handler = null
[INFO] : TiRootActivity: (main) [0,0] checkpoint, on root activity resume. activity = com.am.SfnewActivity@da71fd9
[INFO] : TiUIWebView: (main) [154,154] Detected com.htc.software.Sense feature com.htc.software.Sense7.0
[INFO] : WebViewFactory: Loading com.google.android.webview version 60.0.3112.107 (code 311210700)
[INFO] : art: Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.TokenBindingManagerAdapter>
[INFO] : art: Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.TokenBindingManagerAdapter>
[INFO] : art: Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.ServiceWorkerControllerAdapter>
[INFO] : art: Rejecting re-init on previously-failed class java.lang.Class<com.android.webview.chromium.ServiceWorkerControllerAdapter>
[INFO] : cr_LibraryLoader: Time to load native libraries: 3 ms (timestamps 650-653)
[INFO] : chromium: [INFO:library_loader_hooks.cc(144)] Chromium logging enabled: level = 0, default verbosity = 0
[INFO] : cr_LibraryLoader: Expected native library version number "60.0.3112.107", actual native library version number "60.0.3112.107"
[INFO] : cr_BrowserStartup: Initializing chromium process, singleProcess=true
[INFO] : I/Adreno-EGL: <qeglDrvAPI_eglInitialize:379>: EGL 1.4 QUALCOMM build: Nondeterministic_AU_msm8974_LA.BF.1.1.3__release_AU (I3fa967cfef)
[INFO] : I/Adreno-EGL: OpenGL ES Shader Compiler Version: E031.28.00.02
[INFO] : I/Adreno-EGL: Build Date: 09/29/15 Tue
[INFO] : I/Adreno-EGL: Local Branch: mybranch14683032
[INFO] : I/Adreno-EGL: Remote Branch: quic/master
[INFO] : I/Adreno-EGL: Local Patches: NONE
[INFO] : I/Adreno-EGL: Reconstruct Branch: NOTHING
[DEBUG] : Window: Checkpoint: postWindowCreated()
[WARN] : cr_media: Requires BLUETOOTH permission
[ERROR] : SensorManager: uid = 10863
[INFO] : SensorManager: registerListenerImpl: listener = android.view.OrientationEventListener$SensorEventListenerImpl@42931e, sensor = {Sensor name="Accelerometer Sensor", vendor="HTC Group Ltd.", version=1, type=1, maxRange=19.6133, resolution=0.01, power=0.17, minDelay=10000}, delay = 200000, handler = null
[ERROR] : libEGL: validate_display:255 error 3008 (EGL_BAD_DISPLAY)
[WARN] : VideoCapabilities: Unrecognized profile 2130706433 for video/avc
[DEBUG] : libc: [NET] android_getaddrinfofornetcontext+,hn 16(0x61707063656c65),sn(),hints(known),family 0,flags 1024, proc=com.am
[DEBUG] : libc: [NET] android_getaddrinfo_proxy get netid:0
[WARN] : VideoCapabilities: Unsupported mime video/x-ms-wmv
[WARN] : AudioCapabilities: Unsupported mime audio/x-ms-wma
[WARN] : VideoCapabilities: Unsupported mime video/x-ms-wmv
[INFO] : VideoCapabilities: Unsupported profile 4 for video/mp4v-es
[DEBUG] : libc: [NET] android_getaddrinfo_proxy-, success
[DEBUG] : libc: [NET] android_getaddrinfofornetcontext+,hn 20(0x7777772e617070),sn(),hints(known),family 0,flags 1024, proc=com.am
[DEBUG] : libc: [NET] android_getaddrinfo_proxy get netid:0
[DEBUG] : libc: [NET] android_getaddrinfo_proxy-, success
[TRACE] : updating tiapp metadata with Appcelerator Platform...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment