Reference:
sudo fdisk -l
import android.content.Context; | |
import android.text.Html; | |
import android.text.method.LinkMovementMethod; | |
import android.util.AttributeSet; | |
import android.widget.TextView; | |
public class HtmlTextView extends TextView { | |
public HtmlTextView(Context context) { | |
super(context); |
using System; | |
using Android.Gms.Common; | |
using Android.Gms.Common.Apis; | |
using Android.Gms.Games.Achievement; | |
using Android.Gms.Games.LeaderBoard; | |
using Android.Gms.Games; | |
using Android.App; | |
using Android.Content; | |
using Android.Views; | |
using Java.Interop; |
var pattern = /^[a-z][a-z0-9_]*(\.[a-z0-9_]+)+[0-9a-z_]$/i; | |
[ | |
"me.unfollowers.droid", | |
"me_.unfollowers.droid", | |
"me._unfollowers.droid", | |
"me.unfo11llowers.droid", | |
"me11.unfollowers.droid", | |
"m11e.unfollowers.droid", | |
"1me.unfollowers.droid", |
Shader "Name" { | |
Properties { | |
name ("display name", Range (min, max)) = number | |
name ("display name", Float) = number | |
name ("display name", Int) = number | |
name ("display name", Color) = (number,number,number,number) | |
name ("display name", Vector) = (number,number,number,number) |
using UnityEngine; | |
using System.Collections; | |
using GoogleMobileAds.Api; | |
using UnityEngine.Events; | |
public class AdMobMediationTest : MonoBehaviour | |
{ | |
[SerializeField] | |
string adUnitId_Android = "ca-app-pub-3504169427024836/4346441108"; | |
[SerializeField] |
fastlane_version "1.94.0" | |
default_platform :ios | |
platform :ios do | |
desc "Run Unity Editor tests" | |
lane :test_unit do | |
unity( | |
run_editor_tests: true | |
) |
server { | |
listen 80 default_server deferred; | |
server_name what-shong.com; | |
root /root/what-song-frontend/current; | |
access_log /root/what-song-frontend/current/nginx.access.log; | |
error_log /root/what-song-frontend/current/nginx.error.log info; | |
location / { | |
proxy_pass http://104.156.56.109:3000; |
using UnityEngine; | |
public static class AndroidSignCheck | |
{ | |
private const string c_PackageName = "com.yangzhenlin.unitydemo"; | |
public static byte[] GetSignature() | |
{ | |
//Player = new UnityPlayer(); | |
AndroidJavaClass Player = new AndroidJavaClass("com.unity3d.player.UnityPlayer"); |
Reference:
sudo fdisk -l
// package ... ; | |
/** | |
* Copyright (C) 2014 Square, Inc. | |
* <p> | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* <p> | |
* http://www.apache.org/licenses/LICENSE-2.0 |