IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Composants graphiques Android Discussion :

Android Webview et CORS


Sujet :

Composants graphiques Android

  1. #1
    Membre à l'essai
    Profil pro
    Inscrit en
    Avril 2010
    Messages
    46
    Points
    21
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2010
    Messages : 46
    Points : 21
    Par défaut Android Webview et CORS
    Bonjour,

    Voilà je suis un développeur complètement amateur, je code sur mon loisir essentiellement des sortes de "web-appli". Langage serveur PHP, et en front HTML+CSS+Javascript. J'essaye d’éviter au maximum le recours au jQuery et de code en plain javascript depuis cette année.

    J'aimerais "porter" l'un de mes projets sur Android, dans un cadre "webview". J'ai donc téléchargé Android Studio, et commencé le travail. L'idée est d'avoir un maximum de fichiers en local (le html, css, javascript, les images etc.) et d'avoir les fichiers de communication avec le serveur (php) sur le serveur en lui-même (évidemment).

    Grossomodo, il s'agit d'une "application" permettant une aide de jeu pour un wargame sur table et qui requiert une inscription/connexion de l'utilisateur afin d'accéder à ses parties sauvegardées. Toutes ces données utilisateurs / parties sont évidemment stockées dans une base sql sur le serveur.

    Malheureusement, après compilation de l'apk, l'affichage de la page de connexion se fait correctement, j'y rentre mes identifiants, et lorsque je tente de me connecter il ne se passe strictement rien. (Il va sans dire que cela fonctionne parfaitement si l'appli est intégralement sur le serveur et que l'on s'en sert avec un PC).

    Voici quelques éléments de code qui illustrent ce que fait l'application:

    Arbre (à noter que tous les fichiers html, css, js, images et autres sont placées dans assets)
    Nom : unnamed.png
Affichages : 402
Taille : 19,2 Ko

    Manifest:
    Code XML : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.example.mma.wifcompaniontest" >
        <uses-permission android:name="android.permission.INTERNET" />
        <application
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:theme="@style/AppTheme" >
     
            <activity
                android:name=".MainActivity"
                android:label="@string/app_name"
                android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
     
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
     
            </activity>
     
        </application>
    </manifest>

    MainActivity:
    Code JAVA : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    package com.example.mma.wifcompaniontest;
    import android.annotation.TargetApi;
    import android.os.Bundle;
    import android.support.v7.app.AppCompatActivity;
    import android.webkit.WebView;
     
    public class MainActivity extends AppCompatActivity {
        private WebView m_webview = null;
     
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
     
            // Load layout
            setContentView(R.layout.activity_main);
     
            // Create WebView
            m_webview = new WebView(this);
     
            // Add WebView to Activity
            m_webview = (WebView) findViewById(R.id.webviewWIF);
            m_webview.loadUrl("file:///android_asset/wifmobile.html");
     
            // Reload the old WebView content
            if (savedInstanceState != null) {
                m_webview.restoreState(savedInstanceState);
            }
            // Create the WebView
            else {
                m_webview.getSettings().setJavaScriptEnabled(true);
                int currentapiVersion = android.os.Build.VERSION.SDK_INT;
                if (currentapiVersion >= android.os.Build.VERSION_CODES.JELLY_BEAN){
                    fixNewAndroid(m_webview);
                }
            }
        }
     
        // Save the state of the web view when the screen is rotated.
        @Override
        protected void onSaveInstanceState(Bundle outState) {
            super.onSaveInstanceState(outState);
            m_webview.saveState(outState);
        }
        @TargetApi(16)
        protected void fixNewAndroid(WebView webView) {
            try {
                webView.getSettings().setAllowUniversalAccessFromFileURLs(true);
            }
            catch(NullPointerException e) {
            }
        }
    }

    Exemple de code javascript accédant au php pour la connexion utilisateur:
    Code Javascript : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
     
    var WIF_url='http://mysite.com';
    function NewSignIn() {
    	document.getElementById('overlayload').style.display='block';
    	// Get the values
    	var loginusername = document.getElementById('login-username').value;
    	var loginpassword = document.getElementById('login-password').value;
    	// Send the data using post
    	var xhr2 = new XMLHttpRequest();
    	xhr2.open('POST', WIF_url+'ajax_newsignin.php');
    	xhr2.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
    	xhr2.onload = function() {
    		var data=parseInt(xhr2.responseText) || 0;
    		if (xhr2.status === 200) {
    			document.getElementById('overlayload').style.display='none';
    			if (data > 0) {
    				PopupSave('Welcome <span style="font-weight:bold;color:orange;">' + loginusername + '</span>!')
    				WIF_currentusername = loginusername;
    				WIF_currentiduser = data;
    				//show the game create / new game page
    				document.getElementById('signin').style.display='none';
    				document.getElementById('gamenewload').style.removeProperty('display');
    				document.getElementById('logoutgeneral').style.removeProperty('display');
    				document.getElementById('AutoBuildYesNo').checked=false;
    				document.getElementById('AutoDiploYesNo').checked=false;
    				document.getElementById('AutoScrapYesNo').checked=false;
    				var opt0=document.getElementById('opt0');
    				var opt0parent=opt0.parentNode;
    				opt0parent.parentNode.removeChild(opt0parent);
    				HideClass('debug');
    			} else {
    				PopupSave('Unknown user, you should register first!');
    			}
    		}
    		else if (xhr2.status !== 200) {
    			PopupSave(xhr2.responseText);
    		}
    	};
    	var params=prepareAjaxPostData({ loginusername: loginusername, loginpassword: loginpassword });				
    	xhr2.send(params);
    	return false;
    }

    Et enfin, un exemple de fichier php:
    Code PHP : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    <?php
    header('Access-Control-Allow-Origin: *');
    include_once('db_connect.php');
    // =======================================
    // Connexion d'un utilisateur
    // =======================================
    $username=addslashes(htmlspecialchars($_POST['loginusername']));
    $password=htmlspecialchars($_POST['loginpassword']);
    	// Vérification de l'utilisateur / mot de passe
    	$requestuser="SELECT iduser,password FROM wifusers WHERE username='$username'";
    	$query=$lotr->query($requestuser);
    	$array=$query->fetch();
    	$passwordcheck=$array['password'];
    	$iduser=$array['iduser'];
    	//if(password_verify($password,$passwordcheck)){
    	if($password==$passwordcheck){
    		echo $iduser;
    	}
    	else{
    		echo 0;
    	}
    	$query->closeCursor();
    $lotr = null;
    unset($lotr);
    ?>
    <?php
    header('Access-Control-Allow-Origin: *');
    include_once('db_connect.php');
    $scenario=htmlspecialchars(addslashes($_POST['scenario']));
    $admin=(int)$_POST['admin'];
    $wiforfal=(int)$_POST['wiforfal'];
    $adminname=htmlspecialchars(addslashes($_POST['adminname']));
    // =======================================
    // CREATE GAME AND LOAD XML DATABASE
    // =======================================
    //Création du game
    $sql="INSERT INTO wifgames (xmlsave,admin,adminname,lastsaved,scenario,wiforfal) VALUES ('', $admin,'$adminname','".date("Y-m-d H:i:s")."','$scenario',$wiforfal)";
    $lotr->exec($sql);
    $idgame=$lotr->lastInsertId();
    echo $idgame;
    $lotr = null;
    unset($lotr);
    ?>

    Merci d'avance pour vos précieux conseils!

    -- Mathieu

  2. #2
    Modérateur
    Avatar de grunk
    Homme Profil pro
    Lead dév - Architecte
    Inscrit en
    Août 2003
    Messages
    6 693
    Points
    20 247
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 40
    Localisation : France, Côte d'Or (Bourgogne)

    Informations professionnelles :
    Activité : Lead dév - Architecte
    Secteur : Industrie

    Informations forums :
    Inscription : Août 2003
    Messages : 6 693
    Points : 20 247
    Par défaut
    As tu un message d'erreur dans le logcat qui pourrais te donner plus d'infos ? (voici ici si besoin)
    La requête de connexion arrive t'elle jusqu'au PHP ? La réponse de PHP arrive t'elle jusqu'à ton application ?
    Pry Framework php5 | N'oubliez pas de consulter les FAQ Java et les cours et tutoriels Java

  3. #3
    Membre à l'essai
    Profil pro
    Inscrit en
    Avril 2010
    Messages
    46
    Points
    21
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2010
    Messages : 46
    Points : 21
    Par défaut
    Le gros problème c'est que je n'ai pas moyen d'accéder au logcat. J'ai suivi l'exact tutoriel de développez, car j'adore ce site, mais mon Android Studio ne semble pas détecter la moindre tablette lorsque j'en branche une à mon PC (j'ai eassayé avec la mienne et celle de mon épouse). Pourtant mon ordi lui-même la détecte puisque j'ai accès à son explorateurs et que je peux y mettre des fichiers. Mon ordinateur est trop vieux pour la moindre émulation virtuelle sous Android Studio: je n'avais jamais eu de limitation matérielle auparavant, codant essentiellement des pages web... c'est hyper frustrant

  4. #4
    Membre régulier
    Homme Profil pro
    Développeur Android
    Inscrit en
    Avril 2015
    Messages
    63
    Points
    102
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 30
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Développeur Android

    Informations forums :
    Inscription : Avril 2015
    Messages : 63
    Points : 102
    Par défaut
    Il faut activer le mode développeur sur ton appareil puis action l'option de débogage USB.

  5. #5
    Membre à l'essai
    Profil pro
    Inscrit en
    Avril 2010
    Messages
    46
    Points
    21
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2010
    Messages : 46
    Points : 21
    Par défaut
    C'est bon!! J'avais complètement oublié que j'ai aussi Linux sur mon PC. J'ai donc installé android studio sur ubuntu, et là, comme par magie (ou pas...), aucun problème pour détecter la tablette en mode débuggage...

    J'ai également ajouté ceci à MainActivity pour voir ce qui ne marche pas:
    Code JAVA : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
            //Logcat and console
            m_webview.setWebChromeClient(new WebChromeClient() {
                public boolean onConsoleMessage(ConsoleMessage cm) {
                    Log.d("WiFCompanionConsole", cm.message() + " -- From line "
                            + cm.lineNumber() + " of "
                            + cm.sourceId() );
                    return true;
                }
            });

    Voici donc mon logcat après une tentative de connexion:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
     
    12-23 14:10:07.084 19152-19152/? D/dalvikvm: Late-enabling CheckJNI
    12-23 14:10:07.204 19152-19155/com.wifcompanion.wifcompanion D/dalvikvm: GC_CONCURRENT freed 84K, 6% free 2882K/3040K, paused 1ms+11ms, total 25ms
    12-23 14:10:07.204 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 1ms
    12-23 14:10:07.264 19152-19155/com.wifcompanion.wifcompanion D/dalvikvm: GC_CONCURRENT freed 58K, 4% free 3300K/3436K, paused 2ms+3ms, total 18ms
    12-23 14:10:07.314 19152-19155/com.wifcompanion.wifcompanion D/dalvikvm: GC_CONCURRENT freed 59K, 4% free 3725K/3860K, paused 2ms+2ms, total 20ms
    12-23 14:10:07.374 19152-19155/com.wifcompanion.wifcompanion D/dalvikvm: GC_CONCURRENT freed 51K, 3% free 4187K/4312K, paused 2ms+3ms, total 22ms
    12-23 14:10:07.374 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 7ms
    12-23 14:10:07.444 19152-19155/com.wifcompanion.wifcompanion D/dalvikvm: GC_CONCURRENT freed 92K, 4% free 4637K/4804K, paused 1ms+3ms, total 25ms
    12-23 14:10:07.464 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.content.Context.getSystemService, referenced from method android.support.v7.app.AppCompatDelegateImpl.mapNightMode
    12-23 14:10:07.464 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 692: Landroid/content/Context;.getSystemService (Ljava/lang/Class;)Ljava/lang/Object;
    12-23 14:10:07.464 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0012
    12-23 14:10:07.474 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.Window$Callback.onPointerCaptureChanged, referenced from method android.support.v7.view.WindowCallbackWrapper.onPointerCaptureChanged
    12-23 14:10:07.474 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve interface method 14328: Landroid/view/Window$Callback;.onPointerCaptureChanged (Z)V
    12-23 14:10:07.474 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x72 at 0x0002
    12-23 14:10:07.474 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.Window$Callback.onProvideKeyboardShortcuts, referenced from method android.support.v7.view.WindowCallbackWrapper.onProvideKeyboardShortcuts
    12-23 14:10:07.474 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve interface method 14330: Landroid/view/Window$Callback;.onProvideKeyboardShortcuts (Ljava/util/List;Landroid/view/Menu;I)V
    12-23 14:10:07.474 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x72 at 0x0002
    12-23 14:10:07.474 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to find class referenced in signature (Landroid/view/SearchEvent;)
    12-23 14:10:07.474 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.Window$Callback.onSearchRequested, referenced from method android.support.v7.view.WindowCallbackWrapper.onSearchRequested
    12-23 14:10:07.474 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve interface method 14332: Landroid/view/Window$Callback;.onSearchRequested (Landroid/view/SearchEvent;)Z
    12-23 14:10:07.474 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x72 at 0x0002
    12-23 14:10:07.474 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.Window$Callback.onWindowStartingActionMode, referenced from method android.support.v7.view.WindowCallbackWrapper.onWindowStartingActionMode
    12-23 14:10:07.474 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve interface method 14336: Landroid/view/Window$Callback;.onWindowStartingActionMode (Landroid/view/ActionMode$Callback;I)Landroid/view/ActionMode;
    12-23 14:10:07.474 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x72 at 0x0002
    12-23 14:10:07.474 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.content.res.TypedArray.getChangingConfigurations, referenced from method android.support.v7.widget.TintTypedArray.getChangingConfigurations
    12-23 14:10:07.474 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 892: Landroid/content/res/TypedArray;.getChangingConfigurations ()I
    12-23 14:10:07.474 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0002
    12-23 14:10:07.474 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.content.res.TypedArray.getType, referenced from method android.support.v7.widget.TintTypedArray.getType
    12-23 14:10:07.474 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 914: Landroid/content/res/TypedArray;.getType (I)I
    12-23 14:10:07.474 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0008
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.content.Context.createDeviceProtectedStorageContext, referenced from method android.support.v4.content.ContextCompat.createDeviceProtectedStorageContext
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 663: Landroid/content/Context;.createDeviceProtectedStorageContext ()Landroid/content/Context;
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.content.Context.getCodeCacheDir, referenced from method android.support.v4.content.ContextCompat.getCodeCacheDir
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 670: Landroid/content/Context;.getCodeCacheDir ()Ljava/io/File;
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.content.Context.getColor, referenced from method android.support.v4.content.ContextCompat.getColor
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 671: Landroid/content/Context;.getColor (I)I
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.content.Context.getColorStateList, referenced from method android.support.v4.content.ContextCompat.getColorStateList
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 672: Landroid/content/Context;.getColorStateList (I)Landroid/content/res/ColorStateList;
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.content.Context.getDataDir, referenced from method android.support.v4.content.ContextCompat.getDataDir
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 674: Landroid/content/Context;.getDataDir ()Ljava/io/File;
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.content.Context.getDrawable, referenced from method android.support.v4.content.ContextCompat.getDrawable
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 675: Landroid/content/Context;.getDrawable (I)Landroid/graphics/drawable/Drawable;
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.content.Context.getExternalCacheDirs, referenced from method android.support.v4.content.ContextCompat.getExternalCacheDirs
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 677: Landroid/content/Context;.getExternalCacheDirs ()[Ljava/io/File;
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.content.Context.getExternalFilesDirs, referenced from method android.support.v4.content.ContextCompat.getExternalFilesDirs
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 679: Landroid/content/Context;.getExternalFilesDirs (Ljava/lang/String;)[Ljava/io/File;
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.content.Context.getNoBackupFilesDir, referenced from method android.support.v4.content.ContextCompat.getNoBackupFilesDir
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 683: Landroid/content/Context;.getNoBackupFilesDir ()Ljava/io/File;
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.content.Context.getObbDirs, referenced from method android.support.v4.content.ContextCompat.getObbDirs
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 685: Landroid/content/Context;.getObbDirs ()[Ljava/io/File;
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.content.Context.getSystemService, referenced from method android.support.v4.content.ContextCompat.getSystemService
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 692: Landroid/content/Context;.getSystemService (Ljava/lang/Class;)Ljava/lang/Object;
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.content.Context.getSystemServiceName, referenced from method android.support.v4.content.ContextCompat.getSystemServiceName
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 694: Landroid/content/Context;.getSystemServiceName (Ljava/lang/Class;)Ljava/lang/String;
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.content.Context.isDeviceProtectedStorage, referenced from method android.support.v4.content.ContextCompat.isDeviceProtectedStorage
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 697: Landroid/content/Context;.isDeviceProtectedStorage ()Z
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.content.Context.startForegroundService, referenced from method android.support.v4.content.ContextCompat.startForegroundService
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 712: Landroid/content/Context;.startForegroundService (Landroid/content/Intent;)Landroid/content/ComponentName;
    12-23 14:10:07.484 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.addKeyboardNavigationClusters, referenced from method android.support.v4.view.ViewCompat.addKeyboardNavigationClusters
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 13901: Landroid/view/View;.addKeyboardNavigationClusters (Ljava/util/Collection;I)V
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Failed resolving Landroid/support/v4/view/ViewCompat$OnUnhandledKeyEventListenerWrapper; interface 1756 'Landroid/view/View$OnUnhandledKeyEventListener;'
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: Link of class 'Landroid/support/v4/view/ViewCompat$OnUnhandledKeyEventListenerWrapper;' failed
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion E/dalvikvm: Could not find class 'android.support.v4.view.ViewCompat$OnUnhandledKeyEventListenerWrapper', referenced from method android.support.v4.view.ViewCompat.addOnUnhandledKeyEventListener
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve new-instance 1122 (Landroid/support/v4/view/ViewCompat$OnUnhandledKeyEventListenerWrapper;) in Landroid/support/v4/view/ViewCompat;
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x22 at 0x001b
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.cancelDragAndDrop, referenced from method android.support.v4.view.ViewCompat.cancelDragAndDrop
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 13909: Landroid/view/View;.cancelDragAndDrop ()V
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion E/dalvikvm: Could not find class 'android.view.WindowInsets', referenced from method android.support.v4.view.ViewCompat.dispatchApplyWindowInsets
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve check-cast 1774 (Landroid/view/WindowInsets;) in Landroid/support/v4/view/ViewCompat;
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x1f at 0x000a
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.dispatchNestedFling, referenced from method android.support.v4.view.ViewCompat.dispatchNestedFling
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 13917: Landroid/view/View;.dispatchNestedFling (FFZ)Z
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.dispatchNestedPreFling, referenced from method android.support.v4.view.ViewCompat.dispatchNestedPreFling
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 13918: Landroid/view/View;.dispatchNestedPreFling (FF)Z
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.dispatchNestedPreScroll, referenced from method android.support.v4.view.ViewCompat.dispatchNestedPreScroll
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 13919: Landroid/view/View;.dispatchNestedPreScroll (II[I[I)Z
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.dispatchNestedScroll, referenced from method android.support.v4.view.ViewCompat.dispatchNestedScroll
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 13920: Landroid/view/View;.dispatchNestedScroll (IIII[I)Z
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x74 at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.getAccessibilityLiveRegion, referenced from method android.support.v4.view.ViewCompat.getAccessibilityLiveRegion
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 13929: Landroid/view/View;.getAccessibilityLiveRegion ()I
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.getBackgroundTintList, referenced from method android.support.v4.view.ViewCompat.getBackgroundTintList
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 13935: Landroid/view/View;.getBackgroundTintList ()Landroid/content/res/ColorStateList;
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.getBackgroundTintMode, referenced from method android.support.v4.view.ViewCompat.getBackgroundTintMode
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 13936: Landroid/view/View;.getBackgroundTintMode ()Landroid/graphics/PorterDuff$Mode;
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.getClipBounds, referenced from method android.support.v4.view.ViewCompat.getClipBounds
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 13939: Landroid/view/View;.getClipBounds ()Landroid/graphics/Rect;
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.getElevation, referenced from method android.support.v4.view.ViewCompat.getElevation
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 13944: Landroid/view/View;.getElevation ()F
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.getImportantForAutofill, referenced from method android.support.v4.view.ViewCompat.getImportantForAutofill
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 13951: Landroid/view/View;.getImportantForAutofill ()I
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.getNextClusterForwardId, referenced from method android.support.v4.view.ViewCompat.getNextClusterForwardId
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 13969: Landroid/view/View;.getNextClusterForwardId ()I
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.getScrollIndicators, referenced from method android.support.v4.view.ViewCompat.getScrollIndicators
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 13988: Landroid/view/View;.getScrollIndicators ()I
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.getTransitionName, referenced from method android.support.v4.view.ViewCompat.getTransitionName
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 13994: Landroid/view/View;.getTransitionName ()Ljava/lang/String;
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.getTranslationZ, referenced from method android.support.v4.view.ViewCompat.getTranslationZ
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 13997: Landroid/view/View;.getTranslationZ ()F
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.getZ, referenced from method android.support.v4.view.ViewCompat.getZ
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14007: Landroid/view/View;.getZ ()F
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.hasExplicitFocusable, referenced from method android.support.v4.view.ViewCompat.hasExplicitFocusable
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14008: Landroid/view/View;.hasExplicitFocusable ()Z
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.hasNestedScrollingParent, referenced from method android.support.v4.view.ViewCompat.hasNestedScrollingParent
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14011: Landroid/view/View;.hasNestedScrollingParent ()Z
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.isAttachedToWindow, referenced from method android.support.v4.view.ViewCompat.isAttachedToWindow
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14017: Landroid/view/View;.isAttachedToWindow ()Z
    12-23 14:10:07.504 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.isFocusedByDefault, referenced from method android.support.v4.view.ViewCompat.isFocusedByDefault
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14020: Landroid/view/View;.isFocusedByDefault ()Z
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.isImportantForAutofill, referenced from method android.support.v4.view.ViewCompat.isImportantForAutofill
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14022: Landroid/view/View;.isImportantForAutofill ()Z
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.isInLayout, referenced from method android.support.v4.view.ViewCompat.isInLayout
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14024: Landroid/view/View;.isInLayout ()Z
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.isKeyboardNavigationCluster, referenced from method android.support.v4.view.ViewCompat.isKeyboardNavigationCluster
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14025: Landroid/view/View;.isKeyboardNavigationCluster ()Z
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.isLaidOut, referenced from method android.support.v4.view.ViewCompat.isLaidOut
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14026: Landroid/view/View;.isLaidOut ()Z
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: DexOpt: illegal method access (call Landroid/view/View;.isLayoutDirectionResolved ()Z from Landroid/support/v4/view/ViewCompat;)
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.isLayoutDirectionResolved, referenced from method android.support.v4.view.ViewCompat.isLayoutDirectionResolved
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14027: Landroid/view/View;.isLayoutDirectionResolved ()Z
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.isNestedScrollingEnabled, referenced from method android.support.v4.view.ViewCompat.isNestedScrollingEnabled
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14030: Landroid/view/View;.isNestedScrollingEnabled ()Z
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.keyboardNavigationClusterSearch, referenced from method android.support.v4.view.ViewCompat.keyboardNavigationClusterSearch
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14036: Landroid/view/View;.keyboardNavigationClusterSearch (Landroid/view/View;I)Landroid/view/View;
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion E/dalvikvm: Could not find class 'android.view.WindowInsets', referenced from method android.support.v4.view.ViewCompat.onApplyWindowInsets
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve check-cast 1774 (Landroid/view/WindowInsets;) in Landroid/support/v4/view/ViewCompat;
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x1f at 0x000a
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion E/dalvikvm: Could not find class 'android.view.View$OnUnhandledKeyEventListener', referenced from method android.support.v4.view.ViewCompat.removeOnUnhandledKeyEventListener
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve check-cast 1756 (Landroid/view/View$OnUnhandledKeyEventListener;) in Landroid/support/v4/view/ViewCompat;
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x1f at 0x0015
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.requestApplyInsets, referenced from method android.support.v4.view.ViewCompat.requestApplyInsets
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14062: Landroid/view/View;.requestApplyInsets ()V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.requireViewById, referenced from method android.support.v4.view.ViewCompat.requireViewById
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14068: Landroid/view/View;.requireViewById (I)Landroid/view/View;
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.restoreDefaultFocus, referenced from method android.support.v4.view.ViewCompat.restoreDefaultFocus
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14070: Landroid/view/View;.restoreDefaultFocus ()Z
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.setAccessibilityLiveRegion, referenced from method android.support.v4.view.ViewCompat.setAccessibilityLiveRegion
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14075: Landroid/view/View;.setAccessibilityLiveRegion (I)V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.setAutofillHints, referenced from method android.support.v4.view.ViewCompat.setAutofillHints
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14078: Landroid/view/View;.setAutofillHints ([Ljava/lang/String;)V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.setBackgroundTintList, referenced from method android.support.v4.view.ViewCompat.setBackgroundTintList
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14082: Landroid/view/View;.setBackgroundTintList (Landroid/content/res/ColorStateList;)V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.setBackgroundTintMode, referenced from method android.support.v4.view.ViewCompat.setBackgroundTintMode
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14083: Landroid/view/View;.setBackgroundTintMode (Landroid/graphics/PorterDuff$Mode;)V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.setClipBounds, referenced from method android.support.v4.view.ViewCompat.setClipBounds
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14084: Landroid/view/View;.setClipBounds (Landroid/graphics/Rect;)V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.setElevation, referenced from method android.support.v4.view.ViewCompat.setElevation
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14085: Landroid/view/View;.setElevation (F)V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.setFocusedByDefault, referenced from method android.support.v4.view.ViewCompat.setFocusedByDefault
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14088: Landroid/view/View;.setFocusedByDefault (Z)V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.setImportantForAutofill, referenced from method android.support.v4.view.ViewCompat.setImportantForAutofill
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14092: Landroid/view/View;.setImportantForAutofill (I)V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.setKeyboardNavigationCluster, referenced from method android.support.v4.view.ViewCompat.setKeyboardNavigationCluster
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14093: Landroid/view/View;.setKeyboardNavigationCluster (Z)V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.setNestedScrollingEnabled, referenced from method android.support.v4.view.ViewCompat.setNestedScrollingEnabled
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14102: Landroid/view/View;.setNestedScrollingEnabled (Z)V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.setNextClusterForwardId, referenced from method android.support.v4.view.ViewCompat.setNextClusterForwardId
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14103: Landroid/view/View;.setNextClusterForwardId (I)V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.setOnApplyWindowInsetsListener, referenced from method android.support.v4.view.ViewCompat.setOnApplyWindowInsetsListener
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14104: Landroid/view/View;.setOnApplyWindowInsetsListener (Landroid/view/View$OnApplyWindowInsetsListener;)V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0009
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Failed resolving Landroid/support/v4/view/ViewCompat$1; interface 1746 'Landroid/view/View$OnApplyWindowInsetsListener;'
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: Link of class 'Landroid/support/v4/view/ViewCompat$1;' failed
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion E/dalvikvm: Could not find class 'android.support.v4.view.ViewCompat$1', referenced from method android.support.v4.view.ViewCompat.setOnApplyWindowInsetsListener
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve new-instance 1116 (Landroid/support/v4/view/ViewCompat$1;) in Landroid/support/v4/view/ViewCompat;
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x22 at 0x000d
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.setPointerIcon, referenced from method android.support.v4.view.ViewCompat.setPointerIcon
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14115: Landroid/view/View;.setPointerIcon (Landroid/view/PointerIcon;)V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0010
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.setScrollIndicators, referenced from method android.support.v4.view.ViewCompat.setScrollIndicators
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14123: Landroid/view/View;.setScrollIndicators (I)V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.setScrollIndicators, referenced from method android.support.v4.view.ViewCompat.setScrollIndicators
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14124: Landroid/view/View;.setScrollIndicators (II)V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.setTooltipText, referenced from method android.support.v4.view.ViewCompat.setTooltipText
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14128: Landroid/view/View;.setTooltipText (Ljava/lang/CharSequence;)V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.setTransitionName, referenced from method android.support.v4.view.ViewCompat.setTransitionName
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14129: Landroid/view/View;.setTransitionName (Ljava/lang/String;)V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.setTranslationZ, referenced from method android.support.v4.view.ViewCompat.setTranslationZ
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14132: Landroid/view/View;.setTranslationZ (F)V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.setZ, referenced from method android.support.v4.view.ViewCompat.setZ
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14136: Landroid/view/View;.setZ (F)V
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.startDragAndDrop, referenced from method android.support.v4.view.ViewCompat.startDragAndDrop
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14139: Landroid/view/View;.startDragAndDrop (Landroid/content/ClipData;Landroid/view/View$DragShadowBuilder;Ljava/lang/Object;I)Z
    12-23 14:10:07.514 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.524 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.startNestedScroll, referenced from method android.support.v4.view.ViewCompat.startNestedScroll
    12-23 14:10:07.524 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14140: Landroid/view/View;.startNestedScroll (I)Z
    12-23 14:10:07.524 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.524 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.stopNestedScroll, referenced from method android.support.v4.view.ViewCompat.stopNestedScroll
    12-23 14:10:07.524 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14141: Landroid/view/View;.stopNestedScroll ()V
    12-23 14:10:07.524 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.524 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Could not find method android.view.View.updateDragShadow, referenced from method android.support.v4.view.ViewCompat.updateDragShadow
    12-23 14:10:07.524 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: VFY: unable to resolve virtual method 14142: Landroid/view/View;.updateDragShadow (Landroid/view/View$DragShadowBuilder;)V
    12-23 14:10:07.524 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: VFY: replacing opcode 0x6e at 0x0006
    12-23 14:10:07.524 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Failed resolving Landroid/support/v4/view/ViewCompat$OnUnhandledKeyEventListenerWrapper; interface 1756 'Landroid/view/View$OnUnhandledKeyEventListener;'
    12-23 14:10:07.524 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: Link of class 'Landroid/support/v4/view/ViewCompat$OnUnhandledKeyEventListenerWrapper;' failed
    12-23 14:10:07.524 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: DexOpt: unable to opt direct call 0x1bc3 at 0x1d in Landroid/support/v4/view/ViewCompat;.addOnUnhandledKeyEventListener
    12-23 14:10:07.524 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: DexOpt: unable to opt direct call 0x3811 at 0x14 in Landroid/support/v4/view/ViewCompat;.dispatchApplyWindowInsets
    12-23 14:10:07.524 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: DexOpt: unable to opt direct call 0x3811 at 0x14 in Landroid/support/v4/view/ViewCompat;.onApplyWindowInsets
    12-23 14:10:07.524 19152-19152/com.wifcompanion.wifcompanion I/dalvikvm: Failed resolving Landroid/support/v4/view/ViewCompat$1; interface 1746 'Landroid/view/View$OnApplyWindowInsetsListener;'
    12-23 14:10:07.524 19152-19152/com.wifcompanion.wifcompanion W/dalvikvm: Link of class 'Landroid/support/v4/view/ViewCompat$1;' failed
    12-23 14:10:07.524 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: DexOpt: unable to opt direct call 0x1bc0 at 0x0f in Landroid/support/v4/view/ViewCompat;.setOnApplyWindowInsetsListener
    12-23 14:10:07.574 19152-19155/com.wifcompanion.wifcompanion D/dalvikvm: GC_CONCURRENT freed 241K, 6% free 5109K/5424K, paused 2ms+3ms, total 27ms
    12-23 14:10:07.694 19152-19155/com.wifcompanion.wifcompanion D/dalvikvm: GC_CONCURRENT freed 656K, 13% free 5342K/6072K, paused 1ms+2ms, total 28ms
    12-23 14:10:07.694 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 10ms
    12-23 14:10:07.844 19152-19155/com.wifcompanion.wifcompanion D/dalvikvm: GC_CONCURRENT freed 695K, 13% free 5615K/6384K, paused 1ms+2ms, total 29ms
    12-23 14:10:07.844 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 12ms
    12-23 14:10:08.004 19152-19155/com.wifcompanion.wifcompanion D/dalvikvm: GC_CONCURRENT freed 746K, 13% free 5928K/6748K, paused 1ms+2ms, total 40ms
    12-23 14:10:08.004 19152-19152/com.wifcompanion.wifcompanion D/dalvikvm: WAIT_FOR_CONCURRENT_GC blocked 10ms
    12-23 14:10:08.024 19152-19152/com.wifcompanion.wifcompanion D/libEGL: loaded /system/lib/egl/libEGL_tegra.so
    12-23 14:10:08.044 19152-19152/com.wifcompanion.wifcompanion D/libEGL: loaded /system/lib/egl/libGLESv1_CM_tegra.so
    12-23 14:10:08.054 19152-19152/com.wifcompanion.wifcompanion D/libEGL: loaded /system/lib/egl/libGLESv2_tegra.so
    12-23 14:10:08.104 19152-19178/com.wifcompanion.wifcompanion D/dalvikvm: GC_FOR_ALLOC freed 15K, 12% free 6315K/7144K, paused 32ms, total 32ms
    12-23 14:10:08.134 19152-19152/com.wifcompanion.wifcompanion D/OpenGLRenderer: Enabling debug mode 0
    12-23 14:10:08.524 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught SyntaxError: Unexpected token = -- From line 62 of file:///android_asset/solifnav.js
    12-23 14:10:08.524 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught SyntaxError: Unexpected token = -- From line 615 of file:///android_asset/solif.js
    12-23 14:10:08.544 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught SyntaxError: Unexpected token = -- From line 142 of file:///android_asset/solifpartisans.js
    12-23 14:10:08.554 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught SyntaxError: Unexpected token = -- From line 614 of file:///android_asset/solifflow.js
    12-23 14:10:08.564 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught SyntaxError: Unexpected token = -- From line 59 of file:///android_asset/solifdiplo.js
    12-23 14:10:08.564 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught SyntaxError: Unexpected token = -- From line 183 of file:///android_asset/solifbenefits.js
    12-23 14:10:08.564 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught SyntaxError: Unexpected token = -- From line 34 of file:///android_asset/solifvichy.js
    12-23 14:10:08.584 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught SyntaxError: Unexpected token = -- From line 1223 of file:///android_asset/solifbuild.js
    12-23 14:10:08.594 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught SyntaxError: Unexpected token = -- From line 223 of file:///android_asset/solifcivilwar.js
    12-23 14:10:08.594 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught SyntaxError: Unexpected token = -- From line 1 of file:///android_asset/solifvp.js
    12-23 14:10:08.704 19152-19178/com.wifcompanion.wifcompanion D/dalvikvm: GC_FOR_ALLOC freed 696K, 20% free 6158K/7648K, paused 26ms, total 26ms
    12-23 14:10:08.914 19152-19178/com.wifcompanion.wifcompanion D/dalvikvm: GC_FOR_ALLOC freed 13K, 11% free 6834K/7648K, paused 25ms, total 26ms
    12-23 14:10:08.954 19152-19178/com.wifcompanion.wifcompanion D/dalvikvm: GC_FOR_ALLOC freed 15K, 10% free 7541K/8368K, paused 25ms, total 25ms
    12-23 14:10:09.004 19152-19178/com.wifcompanion.wifcompanion D/dalvikvm: GC_FOR_ALLOC freed 18K, 9% free 8474K/9304K, paused 25ms, total 25ms
    12-23 14:10:09.054 19152-19178/com.wifcompanion.wifcompanion D/dalvikvm: GC_FOR_ALLOC freed 25K, 8% free 9730K/10528K, paused 27ms, total 27ms
    12-23 14:10:09.124 19152-19178/com.wifcompanion.wifcompanion D/dalvikvm: GC_FOR_ALLOC freed 32K, 7% free 11015K/11824K, paused 26ms, total 26ms
    12-23 14:11:55.664 19152-19165/com.wifcompanion.wifcompanion E/MediaPlayer: error (1, -2147483648)
    12-23 14:11:55.684 19152-19152/com.wifcompanion.wifcompanion D/TilesManager: Starting TG #0, 0x585fc098
    12-23 14:11:55.684 19152-19152/com.wifcompanion.wifcompanion D/TilesManager: new EGLContext from framework: 5816bf40 
    12-23 14:11:55.684 19152-19152/com.wifcompanion.wifcompanion D/GLWebViewState: Reinit shader
    12-23 14:11:55.684 19152-19152/com.wifcompanion.wifcompanion D/GLWebViewState: Reinit transferQueue
    12-23 14:11:55.694 19152-19171/com.wifcompanion.wifcompanion E/MediaPlayer: Error (1,-2147483648)
    12-23 14:11:56.844 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught ReferenceError: BodyReset is not defined -- From line 44 of file:///android_asset/wifmobile.html
    12-23 14:11:56.874 19152-19152/com.wifcompanion.wifcompanion W/IInputConnectionWrapper: getCursorCapsMode on inactive InputConnection
    12-23 14:11:56.874 19152-19152/com.wifcompanion.wifcompanion W/IInputConnectionWrapper: getTextBeforeCursor on inactive InputConnection
    12-23 14:12:01.344 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught ReferenceError: BodyKeydown is not defined -- From line 44 of file:///android_asset/wifmobile.html
    12-23 14:12:01.514 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught ReferenceError: BodyKeydown is not defined -- From line 44 of file:///android_asset/wifmobile.html
    12-23 14:12:01.544 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught ReferenceError: BodyKeydown is not defined -- From line 44 of file:///android_asset/wifmobile.html
    12-23 14:12:01.674 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught ReferenceError: BodyKeydown is not defined -- From line 44 of file:///android_asset/wifmobile.html
    12-23 14:12:01.794 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught ReferenceError: BodyKeydown is not defined -- From line 44 of file:///android_asset/wifmobile.html
    12-23 14:12:02.054 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught ReferenceError: BodyKeydown is not defined -- From line 44 of file:///android_asset/wifmobile.html
    12-23 14:12:02.194 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught ReferenceError: BodyKeydown is not defined -- From line 44 of file:///android_asset/wifmobile.html
    12-23 14:12:03.034 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught ReferenceError: BodyReset is not defined -- From line 44 of file:///android_asset/wifmobile.html
    12-23 14:12:03.044 19152-19152/com.wifcompanion.wifcompanion W/IInputConnectionWrapper: beginBatchEdit on inactive InputConnection
    12-23 14:12:03.044 19152-19152/com.wifcompanion.wifcompanion W/IInputConnectionWrapper: beginBatchEdit on inactive InputConnection
    12-23 14:12:03.044 19152-19152/com.wifcompanion.wifcompanion W/IInputConnectionWrapper: endBatchEdit on inactive InputConnection
    12-23 14:12:03.044 19152-19152/com.wifcompanion.wifcompanion W/IInputConnectionWrapper: endBatchEdit on inactive InputConnection
    12-23 14:12:03.044 19152-19152/com.wifcompanion.wifcompanion W/IInputConnectionWrapper: getCursorCapsMode on inactive InputConnection
    12-23 14:12:03.094 19152-19152/com.wifcompanion.wifcompanion W/IInputConnectionWrapper: beginBatchEdit on inactive InputConnection
    12-23 14:12:03.094 19152-19152/com.wifcompanion.wifcompanion W/IInputConnectionWrapper: endBatchEdit on inactive InputConnection
    12-23 14:12:03.104 19152-19152/com.wifcompanion.wifcompanion W/IInputConnectionWrapper: getCursorCapsMode on inactive InputConnection
    12-23 14:12:03.964 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught ReferenceError: BodyKeydown is not defined -- From line 44 of file:///android_asset/wifmobile.html
    12-23 14:12:04.214 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught ReferenceError: BodyKeydown is not defined -- From line 44 of file:///android_asset/wifmobile.html
    12-23 14:12:04.454 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught ReferenceError: BodyKeydown is not defined -- From line 44 of file:///android_asset/wifmobile.html
    12-23 14:12:05.494 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught ReferenceError: BodyReset is not defined -- From line 44 of file:///android_asset/wifmobile.html
    12-23 14:12:06.294 19152-19152/com.wifcompanion.wifcompanion D/WiFCompanionConsole: Uncaught ReferenceError: PopupSave is not defined -- From line 46 of file:///android_asset/solifgamemanagement.js
    On voit que certaines fonctions javascript sont introuvables. Le script s'arrête donc au moment de "PopupSave(...)" dans la fonction NewSIgnin (elle, semble bien trouvée par l'appli)

    EDIT: en commenttant la ligne avec "PopupSave", je parviens à me connecter. Ensuite, j'ai testé certaines fonctionnalités, il y a beaucoup de bugs, qui sont à chaque fois dus au fait que les fonctions javascript de navigation (stockées dans solifnav.js) ne sont pas "trouvées" ("is not defined").

    A noter que les fichiers js sont stcokés dans l'appli et appelé via wifmobile.hmtl comme suit:

    Code HTML : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    <!DOCTYPE html>
    <html>
    <head>
    <!-- Title -->
    <title>World in Flames Companion</title>
     
    <!-- Include meta tag to ensure proper rendering and touch zooming -->
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="manifest" href="manifest.json">
    <!-- icon -->
    <link rel="icon" href="img/icon/favicon.ico" />
    <link rel="icon" type="image/png" href="img/icon/wiflogo48.png" />
    <!-- jQuery library -->
    <!--<script src="js/jquery-1.11.1.min.js"></script>-->
    <!-- Highharts -->
    <script src="https://code.highcharts.com/highcharts.js"></script>
    <!-- WIF scripts -->
    <script src="solifnav.js"></script>
    <script src="solif.js"></script>
    <script src="soliffal.js"></script>
    <script src="solifsetup.js"></script>
    <script src="solifpartisans.js"></script> 
    <script src="solifflow.js"></script>
    <script src="solifcards.js"></script>
    <script src="solifdiplo.js"></script>
    <script src="solifbenefits.js"></script>
    <script src="solifvichy.js"></script>
    <script src="solifinternal.js"></script>
    <script src="solifgamemanagement.js"></script>
    <script src="solifbuild.js"></script>
    <script src="solifhelper.js"></script>
    <script src="solifdatabase.js"></script>
    <script src="solifintel.js"></script>
    <script src="solifstats.js"></script>
    <script src="solifcivilwar.js"></script>
    <script src="solifvp.js"></script>
    <!-- Scenario specifics -->
    <script src="solifscenario4.js"></script>
    <!-- Stylehseet -->
    <link rel="stylesheet" href="wifmobile.css">
    <!-- Fonts -->
    <link href="https://fonts.googleapis.com/css?family=Anton|Russo+One|Fanwood+Text|UnifrakturCook:700" rel="stylesheet">
    </head>
    <body onclick="BodyReset(event);" onkeydown="BodyKeydown(event);">
    ...
    </body>
    </html>

Discussions similaires

  1. Réponses: 30
    Dernier message: 23/02/2015, 16h03
  2. Question sur la plateforme Android Webview
    Par ahmedpa dans le forum Composants graphiques
    Réponses: 3
    Dernier message: 29/11/2014, 20h15
  3. page Html / Javascript sur android ( webView ) webView / javascript
    Par kirua99 dans le forum Composants graphiques
    Réponses: 0
    Dernier message: 07/10/2014, 11h17
  4. Application web sans WebView sur Android
    Par metanoa dans le forum Composants graphiques
    Réponses: 6
    Dernier message: 12/09/2013, 22h32
  5. Ouvrir PDF avec WebView pour Android
    Par eric116 dans le forum Composants graphiques
    Réponses: 3
    Dernier message: 13/07/2011, 11h26

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo