This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 09-15 10:30:11.005: A/art(10438): art/runtime/java_vm_ext.cc:410] JNI DETECTED ERROR IN APPLICATION: GetStringUTFChars received NULL jstring | |
| 09-15 10:30:11.006: A/art(10438): art/runtime/java_vm_ext.cc:410] in call to GetStringUTFChars | |
| 09-15 10:30:11.006: A/art(10438): art/runtime/java_vm_ext.cc:410] from void com.unity3d.player.UnityPlayer.nativeUnitySendMessage(java.lang.String, java.lang.String, java.lang.String) | |
| 09-15 10:30:11.006: A/art(10438): art/runtime/java_vm_ext.cc:410] "UnityMain" prio=5 tid=12 Runnable | |
| 09-15 10:30:11.006: A/art(10438): art/runtime/java_vm_ext.cc:410] | group="main" sCount=0 dsCount=0 obj=0x12f1aa00 self=0xaa24a000 | |
| 09-15 10:30:11.006: A/art(10438): art/runtime/java_vm_ext.cc:410] | sysTid=10457 nice=0 cgrp=default sched=0/0 handle=0x95c56930 | |
| 09-15 10:30:11.006: A/art(10438): art/runtime/java_vm_ext.cc:410] | state=R schedstat=( 2488018876 249668251 4746 ) utm=223 stm=24 core=1 HZ=100 | |
| 09-15 10:30:11.006: A/art(10438): art/runtime/java_vm_ext.cc:410] | stack=0x95b540 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| NullReferenceException: Object reference not set to an instance of an object | |
| GreedyGame.Platform.Dummy.DummyWrapper+<init>c__Iterator0.MoveNext () | |
| GreedyGame.Platform.NativeWrapper+<init>c__Iterator0.MoveNext () | |
| UnityEngine.SetupCoroutine.InvokeMoveNext (IEnumerator enumerator, IntPtr returnValueAddress) (at C:/buildslave/unity/build/Runtime/Export/Coroutines.cs:17) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> | |
| <html> | |
| <head> | |
| <title>Error: 404 Not Found</title> | |
| <style type="text/css"> | |
| html {background-color: #eee; font-family: sans;} | |
| body {background-color: #fff; border: 1px solid #ddd; | |
| padding: 15px; margin: 15px;} | |
| pre {background-color: #eee; border: 1px solid #ddd; padding: 5px;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Don't do this. | |
| namespace foo.Bar {} | |
| namespace foo { | |
| // Duplicate definition of Bar | |
| public class Bar { } | |
| } | |
| // Do this | |
| namespace foo.bar { } | |
| namespace foo { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def update | |
| (pkgName: PkgName, diff: IAPDiffResult) | |
| (implicit log: Logger, service: AndroidPublisher) = | |
| { | |
| val iaps = service.inappproducts() | |
| def doUpdates() = { | |
| log.logln(s"Updating IAPs (${diff.changes.size})") | |
| diff.changes.foreach { diff => | |
| val iap = diff.local |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void addToUI(int width, int height, boolean isTopBanner) { | |
| float density = activity.getResources().getDisplayMetrics().density; | |
| int finalWidth = (int)(width * density); | |
| int finalHeight = (int)(height * density); | |
| bannerFrame = new FrameLayout(activity); | |
| bannerFrame.addView(banner, new FrameLayout.LayoutParams( | |
| finalWidth, finalHeight, | |
| (isTopBanner ? Gravity.TOP : Gravity.BOTTOM) | Gravity.CENTER_HORIZONTAL | |
| )); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void addToUI(int width, int height, boolean isTopBanner) { | |
| float density = activity.getResources().getDisplayMetrics().density; | |
| int finalWidth = (int)(width * density); | |
| int finalHeight = (int)(height * density); | |
| bannerFrame = new FrameLayout(activity); | |
| RelativeLayout.LayoutParams bannerLayoutParams = | |
| new RelativeLayout.LayoutParams(finalWidth, finalHeight); | |
| bannerFrame.addView(banner, bannerLayoutParams); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.tinylabproductions.tbsgame.notifications; | |
| import android.os.Bundle; | |
| import android.support.v4.app.FragmentActivity; | |
| import android.support.v4.app.FragmentManager; | |
| import android.util.Log; | |
| import android.widget.Toast; | |
| import com.tinylabproductions.tbsgame.Prefs; | |
| import com.tinylabproductions.tbsgame.data.IntDate; | |
| import com.tinylabproductions.tbsgame.data.IntHHMM; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.tinylabproductions.tbsgame.notifications; | |
| import android.content.BroadcastReceiver; | |
| import android.content.Context; | |
| import android.content.Intent; | |
| public class LaunchMuteForDialogReceiver extends BroadcastReceiver { | |
| @Override | |
| public void onReceive(Context context, Intent intent) { | |
| context.startActivity( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package app.actors | |
| import java.nio.ByteOrder | |
| import akka.io.Tcp | |
| import akka.typed.ScalaDSL._ | |
| import akka.typed._ | |
| import akka.util.ByteString | |
| import akka.{actor => untyped} | |
| import app.protobuf.parsing.Parsing |