• Sign in

李攀 / fangTang · Files

Favicon

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Forks
  • Network
  • fangTang
  • ..
  • config
  • GlobalVar.java
  • volley gradle update,switch basic use in fangtang
      d7ea7ebe
    wugian authored
    2017-03-24 17:07:26 +0800  
    Browse Files »
GlobalVar.java 434 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package com.adroplat.fist_switch.config;

import android.util.Log;

/**
 * Created by wugian on 2017/3/8.
 */

public class GlobalVar {
    public static final String CHARSET_UTF8 = "utf-8";
    public static final int MAX_BYTE = 0xFF;
    static GlobalVar globalVar = new GlobalVar();


    public static GlobalVar getLogUtils() {
        return globalVar;
    }

    public void i(String s) {
        Log.d("GlobalVar", s);
    }
}