$ cd /path/to/Dockerfile
$ sudo docker build .
View running processes
| package com.example.ourproject | |
| import android.os.Bundle | |
| import io.flutter.plugin.common.MethodChannel | |
| import android.widget.Toast | |
| import io.flutter.app.FlutterActivity | |
| import io.flutter.plugins.GeneratedPluginRegistrant | |
| class MainActivity: FlutterActivity() { | |
| private val CHANNEL = "ourproject.sendstring" |
| // | |
| // tested with kerberos 0.0.12 on linux against apache running mod_auth_kerb with Samba AD providing KDC | |
| // | |
| var Kerberos = require('kerberos').Kerberos; | |
| var kerberos = new Kerberos(); | |
| var http = require('http'); | |
| function httpget(opts, callback) { | |
| console.log('submitting to '+(opts.hostname||opts.host)+' with authorization header: '+(opts.headers||{}).authorization); | |
| var req = http.get(opts, function(res) { |
| //events - a super-basic Javascript (publish subscribe) pattern | |
| var events = { | |
| events: {}, | |
| on: function (eventName, fn) { | |
| this.events[eventName] = this.events[eventName] || []; | |
| this.events[eventName].push(fn); | |
| }, | |
| off: function(eventName, fn) { | |
| if (this.events[eventName]) { |